mac下 PYthon3 下 pip install mysqlclient 错误解决方案

首先在MAC下安装xcode-select --install
brew install mysql-connector-c 
pip install mysqlclient

如果出现问题就按照下面的步骤继续操作
vim  /usr/local/Cellar/mysql-connector-c/6.1.11/bin/ mysql_config
搜索libs
libs="$libs -l "
修改成:
libs="$libs -lmysqlclient -lssl -lcrypto "

资料参考:

1. https://blog.csdn.net/dqchouyang/article/details/53265076

2.https://www.cnblogs.com/blacksonny/p/8335193.html

你可能感兴趣的:(mac下 PYthon3 下 pip install mysqlclient 错误解决方案)