异度部落格

学习是一种生活态度。

0%

编译Mysql时configure: error: No curses/termcap library found 的错误解决方法

OS:Ubuntu 8.04

在编译 Mysql 时 sudo ./configure

如果出现了以下错误: checking for tgetent in -ltermcap… no checking for termcap functions library… configure: error: No curses/termcap library found

说明 curses/termcap 库没有安装

1
sudo apt-cache search curses | grep lib

安装 libncurses5-dev ,然后重新运行配置

1
sudo apt-get install libncurses5-dev

然后就安装吧:sudo make && make install