报错信息
ERROR: Command errored out with exit status 1:
command: /Users/liuzh/Documents/tiger/auth_guardian/venv/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/tmp/pip-install-rCZban/MySQL-python/setup.py'"'"'; __file__='"'"'/private/tmp/pip-install-rCZban/MySQL-python/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/tmp/pip-install-rCZban/MySQL-python/pip-egg-info
cwd: /private/tmp/pip-install-rCZban/MySQL-python/
Complete output (10 lines):
sh: mysql_config: command not found
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/tmp/pip-install-rCZban/MySQL-python/setup.py", line 17, in <module>
metadata, options = get_config()
File "setup_posix.py", line 43, in get_config
libs = mysql_config("libs_r")
File "setup_posix.py", line 25, in mysql_config
raise EnvironmentError("%s not found" % (mysql_config.path,))
EnvironmentError: mysql_config not found
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
解决办法
首先安装mysql
参考:https://www.cnblogs.com/xiao-xue-di/p/9655120.html
# 运行
export PATH=${PATH}:/usr/local/Cellar/mysql@5.7/5.7.28/bin
sudo pip install MySQL-Python --global-option=build_ext --global-option="-I/usr/local/opt/openssl/include" --global-option="-L/usr/local/opt/openssl/lib"
参考:https://stackoverflow.com/questions/12218229/my-config-h-file-not-found-when-install-mysql-python-on-osx-10-8
来源:CSDN
作者:liuzh(少昊)
链接:https://blog.csdn.net/liuzonghao88/article/details/103586979