개인적인 정리

Curses library not found. Please install appropriate package, 본문

DB/MYSQL

Curses library not found. Please install appropriate package,

yeon.Biju 2020. 1. 10. 15:02

-- Could NOT find Curses (missing: CURSES_LIBRARY CURSES_INCLUDE_PATH) 
CMake Error at cmake/readline.cmake:71 (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:100 (FIND_CURSES)
  cmake/readline.cmake:194 (MYSQL_USE_BUNDLED_EDITLINE)
  CMakeLists.txt:1185 (MYSQL_CHECK_EDITLINE)

 

리눅스에서 MySQL  설치시 위와 같은 오류가 발생

 

#yum -y install ncurses-devel

Comments