安装mysql时,出现checking for termcap functions library... configure: error: No curses/termcap library found
解决办法:
下载安装相应软件包
一、系统是RedHat系列:
yum list|grep ncurses
yum -y install ncurses-devel
yum install ncurses-devel
二、系统是Ubuntu或Debian:
apt-cache search ncurses
apt-get install libncurses5-dev
#./configure \
--prefix=/usr/local/mysql \
--with-extra-charsets=all
# make && make install