因为最近学习用到mysqlclient,安装一直不成功,查了很久亲测有效,记录下。
- 首先需要安装 mysql-connector-c
brew install mysql-connector-c
没有brew需要安装
2.然后 修改mysql_config 执行mysql_config可以看到文件所在位置,我的在/usr/local/bin/mysql_config
mysql_config
打开文件位置,发现时快捷方式,右键选择 显示原身
3. 将文件113 114行修改为
# Create options
libs="-L$pkglibdir"
libs="$libs -lmysqlclient -lssl -lcrypto"
4然后安装 openssl
brew info openssl
5根据提示执行
export LDFLAGS="-L/usr/local/opt/openssl/lib"export CPPFLAGS="-I/usr/local/opt/openssl/include"
6.重新安装即可
pip install mysqlclient