编译安装MySQL的时候,出现错误:

-- Could NOT find Curses (missing:  CURSES_LIBRARY CURSES_INCLUDE_PATH)
CMake Error at cmake/readline.cmake:85 (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.
      
解决办法:
rm -f CMakeCache.txt
yum -y install ncurses-devel

相关文章:

  • 2021-12-07
  • 2021-11-11
  • 2021-06-20
  • 2021-05-15
  • 2021-06-29
  • 2022-12-23
  • 2022-12-23
  • 2022-01-17
猜你喜欢
  • 2021-08-03
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
  • 2021-10-06
  • 2021-12-29
相关资源
相似解决方案