Post date: Feb 6, 2012 1:34:22 PM
when trying to install MySQL-python there is error:
# pip install MySQL-python
EnvironmentError: mysql_config not found
To fix it you need to install libmysqlclient15-dev
:
# apt-get install libmysqlclient15-dev
# pip install MySQL-python