yum显示已安装readline但readline命令无法正常工作

时间:2014-09-30 20:36:18

标签: bash centos readline libreadline rlwrap

yum我的系统显示已安装readline

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

但是当我运行readline命令时,它无法正常工作

-bash: readline: command not found

我认为命令二进制文件可能不在路径上所以尝试搜索它但没有运气.. !!

sudo find /usr/ -iname readline

基本上我试图安装http://freecode.com/projects/rlwrap/ 并且配置失败,说找不到readline库。

2 个答案:

答案 0 :(得分:17)

" readline的"不是命令。

如果您正在尝试构建使用readline库的软件,则需要安装readline-devel

答案 1 :(得分:3)

得到了!! 需要安装Readline开发包。 安装后。我得到了我想要的东西.. sudo yum install readline-devel