Linux编译安装MySQL出现错误Could NOT find Curses (missing CURSES_LIBRARY CURSES_INCLUDE_PATH)

出现以下错误提示:

-- Could NOT find Curses (missing:  CURSES_LIBRARY CURSES_INCLUDE_PATH)
CMake Error at cmake/readline.cmake:82 (MESSAGE):
  Curses library not found.  Please install appropriate package,

      remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu, package name is libncurses5-dev, on Redhat and derivates it is ncurses-devel.
Call Stack (most recent call first):
  cmake/readline.cmake:126 (FIND_CURSES)
  cmake/readline.cmake:216 (MYSQL_USE_BUNDLED_LIBEDIT)
  CMakeLists.txt:250 (MYSQL_CHECK_READLINE)

 

-- Configuring incomplete, errors occurred!

解决方法:

[root@localhost mysql-5.5.17]# rm CMakeCache.txt
[root@localhost mysql-5.5.17]# yum install ncurses-devel

[root@localhost mysql-5.5.17]# yum install bison

[root@localhost mysql-5.5.17]# make && make install

posted @ 2019-03-27 01:55  用户名未被使用  阅读(372)  评论(0编辑  收藏  举报