12

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 库。

4

2 回答 2

25

“readline”不是命令。

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

于 2014-09-30T20:42:03.187 回答
4

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

于 2014-09-30T20:42:24.480 回答