今天 pip install MySQL-python==1.2.5 报如下错误:
EnvironmentError: mysql_config not found
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/6h/hchh3z9d6b33h11qh0wh__dh0000gn/T/pip-install-Rm43Qv/MySQL-python/
解决方法如下:
1)首先需要进行Python的安装
(2)进行mysql的安装,多种方式,偷懒一些可以直接使用brew指令
brew install mysql
(3)mysql_config not found的造成原因就是因为我们默认安装的路径没有被填加进去,所以使用export命令来设置下环境变量:
export PATH=$PATH:/usr/local/mysql/bin
(4)进行MySQL-Python的安装:
pip install MySQL-Python
原文:https://blog.csdn.net/Megustas_JJC/article/details/78955958
网友评论