Date Tags Linux

LINUX: EnvironmentError: mysql_config not found

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

Comments

comments powered by Disqus