安装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
本文详细介绍了如何解决在安装MySQL时出现的找不到curses/termcap库的问题,提供了针对RedHat系列和Ubuntu或Debian系统的解决方案,并通过配置参数成功完成MySQL的安装。
4592

被折叠的 条评论
为什么被折叠?



