Centos install MySQL-python

wget http://sourceforge.net/projects/mysql-python/files/mysql-python/1.2.3/MySQL-python-1.2.3.tar.gz/download
wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
tar -zxvf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11
python setup.py build
python setup.py install
tar -zxvf MySQL-python-1.2.3.tar.gz
cd MySQL-python-1.2.3
python setup.py build

此处可能会出现(若无,则可忽略):
error: command 'gcc' failed with exit status 1

则:

yum install python-devel

详细: http://blog.eflow.org/archives/54
继续
python setup.py install
安装成功~

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