Can't run NewLISP in Ubuntu through libreadline.so.6

Machine-specific discussion
Unix, Linux, OS X, OS/2, Windows, ..?
Locked
LispUser
Posts: 2
Joined: Sat Dec 19, 2009 9:46 pm

Can't run NewLISP in Ubuntu through libreadline.so.6

Post by LispUser »

I install NewLISP newLISP v.10.1.7 for UBUNTU on i386 UTF-8 enabled in Ubuntu 9.04.
When started output error:

Code: Select all

~$ newlisp: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory
In Synaptic only libreadline.so.5.
What can I do?
Last edited by LispUser on Sun Dec 20, 2009 3:09 pm, edited 1 time in total.

LispUser
Posts: 2
Joined: Sat Dec 19, 2009 9:46 pm

Re: Can't run NewLISP in Ubuntu

Post by LispUser »

I googled it and found for example.
Do symlink:

Code: Select all

~$ sudo ln -s /lib/libreadline.so.5 /lib/libreadline.so.6 

Locked