Linux源码预编译安装mysql5.7报错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,
解决办法:
rm -f CMakeCache.txt yum install ncurses-devel bison -y
重新预编译,问题解决。
转载请注明:21运维 » Linux源码编译安装mysql5.7报错Could NOT find Curses (missing CURSES_LIBRARY CURSES_INCLUDE_PATH)解决办法