MySQLdb is an thread-compatible interface to the popular MySQL database server that provides the Python database API.
Standard Installation
1 2 3 4 5 6 |
# install mysql brew install mysql # update path export PATH=$PATH:/usr/local/mysql/bin # install MySQL-Python (MySQLdb) pip install MySQL-Python |
EnvironmentError: mysql_config not found
You need install mysql and link, before install MySQL-Python
1 2 3 4 |
# install mysql brew install mysql # update path export PATH=$PATH:/usr/local/mysql/bin |