easy_install安装python的MySQLdb模块

1.首先要安装easy_install

[html]  view plain  copy
 
  1. apt-get install python-setuptools  

或者

[plain]  view plain  copy
 
  1. yum install python-setuptools  


2.接着安装MySQLdb模块

[html]  view plain  copy
 
  1. easy_install mysql-python  

1.如果报错

[html]  view plain  copy
 
  1. EnvironmentError: mysql_config not found  
这是因为缺少libmysqlclient-dev

以Ubuntu为例:
假如已经安装debian / ubuntu:sudo apt-get install mysql
mysql-config是在不同的模块,并不在mysql里面。

执行

[html]  view plain  copy
 
  1. sudo apt-get install libmysqlclient-dev  


centos则执行

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


2.如果报错

[html]  view plain  copy
 
  1. _mysql.c:29:20: 致命错误: Python.h:没有那个文件或目录  
执行

[html]  view plain  copy
 
  1. sudo apt-get install python-dev   

你可能感兴趣的:(easy_install安装python的MySQLdb模块)