Installing Mysqldb On Python 2.7.3 Under Centos
I need to install Python 2.7 on a machine, from source, alongside the existing version on the machine (2.4). I have compiled and installed Python successfully, but when I try to ru
Solution 1:
The package is called MySQL-python
:
easy_install MySQL-python
Do check the installation requirements; you have python and setuptools, but you need the mysql-devel
package too.
Post a Comment for "Installing Mysqldb On Python 2.7.3 Under Centos"