I get the following error when I try to install MySQL-python-1.2.3 under Python 2.6 in Fedora 14.
Fedora 14 comes with Python 2.7 by default and I am working in a p
you need to install MySQL Development package
yum install mysql-devel
Solved this issue in the following way
MySQLdb
folder from site-packages directory of Python2.7 to Python2.6.Also copy the following files from site-packages directory of Python2.7 to Python2.6.
_mysql.so
_mysql_exceptions.py
_mysql_exceptions.pyc
_mysql_exceptions.pyo
Now try the following
>>> import MySQLdb
>>> MySQLdb.__version__
'1.2.3'
Install python-devel. That should help