经过排查,发现在./configure时出现错误:error: No curses/termcap library found。
原因:缺少ncurses安装包
解决办法:
下载安装相应软件包
一、如果你的系统是RedHat系列:
yum list|grep ncurses
yum -y install ncurses-devel
yum install ncurses-devel
中间yum出现“No module named yum”错误,
搜索一番后知道是yum和Python是依赖关系,yum是python的模块,前面安装 python2.7把原来的/usr/bin/python重命名了,肯定是yum的版本与当前python的版本不一致造成的,所以修改yum的配置,修改文件: vim /usr/bin/yum
修改头#!/usr/bin/python
#!/usr/bin/python2.6.6
二、如果你的系统是Ubuntu或Debian:
apt-cache search ncurses
apt-get install libncurses5-dev
待安装completed!之后,再./configure,顺利通过,然后make && make install,成功安装。