“my_config.h” file not found when intall mysql-python on Mac
程序员文章站
2022-05-04 17:30:24
...
在mac上安装mysql-pytho模块,表示已被搞崩溃,最后通过下面的方法解决了
brew install mysql
brew unlink mysql
brew install mysql-connector-c
sed -i -e 's/libs="$libs -l "/libs="$libs -lmysqlclient -lssl -lcrypto"/g' /usr/local/bin/mysql_config
pip install MySQL-python
brew unlink mysql-connector-c
brew link --overwrite mysql
注意,要先安装brew。然后最好先在本地通过brew安装一个mysql,这样在安装mysql-pytho过程中,应该就能避免遇见更多的问题。
参考:打开
上一篇: 算法机考模拟题1006.单词变换
下一篇: springboot打jar包