2

I am trying to install an open source project Rosie Pattern Language (RPL) via the make command. I am getting this error: Missing readline library or readline.h.
I have installed the required readline packages via sudo apt-get install libreadline-dev which did not resolve the issue.

Update: Ubuntu Version: 16.04.3

Output of dkpg -S readline.h:

libreadline6-dev:amd64: /usr/include/readline/readline.h
N0rbert
  • 99,918
James Henderson
  • 21
  • 1
  • 1
  • 3

1 Answers1

2

The solution is to install corresponding packages with

sudo apt-get install git build-essential libreadline-dev

Then clone repository and make:

git clone https://github.com/jamiejennings/rosie-pattern-language.git
cd rosie-pattern-language/
make

And run software with

./bin/rosie
N0rbert
  • 99,918