Curses library not found. Please install appropriate package
리눅스/MySQL2015. 1. 16. 11:41
반응형
mysql 5.6.14 설치시 cmake 할때 아래와 같은 에러메세지가 출력될경우
-- 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.
Call Stack (most recent call first):
cmake/readline.cmake:128 (FIND_CURSES)
cmake/readline.cmake:202 (MYSQL_USE_BUNDLED_EDITLINE)
CMakeLists.txt:325 (MYSQL_CHECK_EDITLINE)
-- Configuring incomplete, errors occurred!
아래와 같이 필요한 패키지를 추가 설치 후 다시 진행하면 됩니다.
# yum -y install bison ncurses-devel
# rm -f CMakeCache.txt
# cmake ... (생략)
반응형
'리눅스 > MySQL' 카테고리의 다른 글
Warning: Using a password on the command line interface can be insecure. 메세지 안보이게 하기 (0) | 2015.01.16 |
---|---|
./mysql_install_db: line 37: use: command not found (0) | 2015.01.16 |
mysql 바이너리 로그 파일 초기화 (0) | 2015.01.16 |
MySQL 타임스탬프(timestamp) <-> 날짜 상호 변환 (0) | 2015.01.16 |
홈페이지 한글 깨짐(물음표) 현상 해결 (0) | 2015.01.16 |
댓글()