当前位置: 代码迷 >> 综合 >> mac OSx 安装 mysqlclient 问题python setup.py egg_info failed with error code 1(已解决)
  详细解决方案

mac OSx 安装 mysqlclient 问题python setup.py egg_info failed with error code 1(已解决)

热度:13   发布时间:2023-11-26 09:09:55.0

因为最近学习用到mysqlclient,安装一直不成功,查了很久亲测有效,记录下。

  1. 首先需要安装 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

 

  相关解决方案