Before installing the Mysql-python, install Setuptools first. https://pypi.python.org/pypi/setuptools/7.0
Download Mysql-python. Download the source package. https://pypi.python.org/pypi/MySQL-python/1.2.5
Execute Python setup.py install after decompression
Hint Error: Fatal error C1083:cannot open include file: ' Config-win.h ': No such file or directory
Need to install MySQL connector go to http://dev.mysql.com/downloads/connector/c/6.0.html#downloads download the 32-bit or 64-bit version according to Python version. The default installation is sufficient.
Execute the Python setup.py install successfully again.
If you also see the same error, check that the value connector in the file site.cfg is the directory where you installed the MySQL connector. The default should be C:\Program Files (x86 ) \mysql\mysql Connector C 6.0.2 (32-bit) or C:\Program files\mysql\mysql Connector C 6.0.2 (64-bit)
Modify the directory that you installed.
Mysql-python installation Error fatal error C1083:cannot open include file: ' Config-win.h ': No such file or directory