mysql错误:my_config.h: No such file or directory

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

    解决办法:

yum install ncurses-devel

   

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

[html] 
view plain
copy
  1. pymemcompat.h:10:20: error: Python.h: No such file or directory  

    则需要安装:

[html] 
view plain
copy
  1. yum install python-devel  


   如果出现错误信息:

[html] 
view plain
copy
  1. _mysql.c:36:23: error: my_config.h: No such file or directory  
  2. _mysql.c:38:19: error: mysql.h: No such file or directory  
  3. _mysql.c:39:26: error: mysqld_error.h: No such file or directory  
  4. _mysql.c:40:20: error: errmsg.h: No such file or directory  



   则需要安装:

[html] 
view plain
copy
  1. yum install  mysql-devel  


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

[sql] 
view plain
copy
  1. rpm -ivh --force --nodeps python-devel-2.4.3-27.el5_5.3.x86_64.rpm  
THE END
< <上一篇
下一篇>>