mac python3 mysqlclient 安装失败的解决方法
作者:互联网
在mac 中 python3.9 环境下安装mysqlclient,使用以下代码失败:
$ pip install mysqlclient # pip3 install mysqlclient
ERROR: No matching distribution found for mysqlclient
找到以下方法供参考:
- 首先查找mysql_config文件夹位置,一般在/usr/local/mysql/bin/这个路径下
- 然后将mysql_config链接到/usr/local/bin目录下
$ ln -s /usr/local/mysql/bin/mysql_config /usr/local/bin/mysql_config
- 最后再执行 pip3 install mysqlclient 就可以成功
参考博客
https://www.jianshu.com/p/7f8cdf14ee31
标签:bin,local,mysqlclient,mac,usr,mysql,config,python3 来源: https://blog.csdn.net/Diana003/article/details/122752428