Yum shows that readline is installed, but the readline command does not work

yum My system shows the set reading level

rlwrap-0.41]$ sudo yum install readline Loaded plugins: fastestmirror, presto, security Loading mirror speeds from cached hostfile . . . Package readline-6.0-4.el6.x86_64 already installed and latest version Nothing to do 

But when I run the readline command, it does not work

 -bash: readline: command not found 

I thought the command binary might not be in the way, so he tried to find it, but no luck .. !!

 sudo find /usr/ -iname readline 

Basically I am trying to install http://freecode.com/projects/rlwrap/ and configure does not work, saying that the readline library was not found.

+6
source share
2 answers

"readline" is not a command.

If you are trying to create software that uses the readline library, you need to install readline-devel .

+11
source

Got! You must install the Readline development package. After installation. I got what I wanted. sudo yum install readline-devel

+2
source

Source: https://habr.com/ru/post/976074/


All Articles