mysql错误:No curses/termcap library found

    在使用源码安装mysql时,经常遇到错误:No curses/termcap library found

    解决办法:

yum install ncurses-devel

  

   安装mysql-python时,如果报错:

pymemcompat.h:10:20: error: Python.h: No such file or directory

    则需要安装:

yum install python-devel

   如果出现错误信息:

_mysql.c:36:23: error: my_config.h: No such file or directory
_mysql.c:38:19: error: mysql.h: No such file or directory
_mysql.c:39:26: error: mysqld_error.h: No such file or directory
_mysql.c:40:20: error: errmsg.h: No such file or directory

   则需要安装:

yum install  mysql-devel

   有时候由于系统环境等问题造成python-devel安装失败,则可以自行下载python-devel的rpm包(下载地址),自行使用rpm命令安装python-devel

rpm -ivh --force --nodeps python-devel-2.4.3-27.el5_5.3.x86_64.rpm


你可能感兴趣的:(mysql,File,library)