error: No curses/termcap library found 해결 방법

1199 단어
mysql 버전: 5.1.30
이번이 몇 번째 mysql 설치인지 기억이 안 나는데, 이 문제에 부딪힌 것은 처음이다.
전에 tar에서.../configure,make,make install 클래식 4단계 때 그 과정을 생각해 본 적이 없어요. 그냥 공적인 일처럼 하면 돼요.
불행히도 이번에는./configure 후 make 시 다음 오류가 발생합니다.
make: *** No targets specified and no makefile found. stop.
 
원래는 이번에도 다른 사람에게 가르침을 청하려고 했는데 나중에 생각해 보니 얼마 전에 자신에게 문제가 생기면 먼저 자신이 해결해야 한다고 말했다.
 
그래서 인터넷에서 관련 자료를 찾았는데 확인은./configure에 문제가 생겨서 뒤돌아보니 과연 문제가 발견되었습니다.
마지막 몇 줄이 틀렸다.전체 오류 정보는 다음과 같습니다.
checking for tgetent in -lncurses... no
checking for tgetent in -lcurses... no
checking for tgetent in -ltermcap... no
checking for tgetent in -ltinfo... no
checking for termcap functions library... configure: error: No curses/termcap library found

 
이유:
ncurses 설치 패키지 부족
 
해결 방법:
해당 패키지를 다운로드하여 설치합니다.
1. 만약 당신의 시스템이 RedHat 시리즈라면:
yum list|grep ncurses
yum -y install ncurses-devel
yum install ncurses-devel

 
2. 시스템이 Ubuntu 또는 Debian인 경우:
apt-cache search ncurses
apt-get install libncurses5-dev

 
completed가 설치되어 있습니다!그 다음configure, 순조롭게 통과한 다음에make &make install, 성공적으로 설치, 모든 OK!~~

좋은 웹페이지 즐겨찾기