天天看点

mac安装python2.7和python3.5 mysqldb碰到的问题

碰到过几次开发环境关于这个的报错了这里记录一下解决的方法

*python2.7 mysqldb on mac

brew install mysql-client
echo 'export PATH="/usr/local/opt/mysql-client/bin:$PATH"' >>
~/.bash_profile source ~/.bash_profile 
pip install MySQL-python
           

python3.5 mysqldb

mac安装python2.7和python3.5 mysqldb碰到的问题

参考

https://blog.csdn.net/eruituoa/article/details/75142500