checking for termcap functions library... configure: error: No curses/termcap library found
查找确认为编译问题
原因:
缺少ncurses安装包
解决办法:
下载安装对应软件包
一、如果你的系统是RedHat系列:
yum list|grep ncurses
yum -y install ncurses-devel
二、如果你的系统是Ubuntu或Debian:
apt-cache search ncurses
apt-get install libncurses5-dev