红联Linux门户
Linux帮助

ubuntu安装mysql错误Command "python setup.py egg_info"解决

发布时间:2016-11-23 16:35:55来源:linux网站作者:TonyMistark
错误内容
Downloading MySQL-python-1.2.5.zip (108kB)
100% |################################| 112kB 3.9MB/s 
Complete output from command python setup.py egg_info:
sh: 1: mysql_config: not found
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-lmPxCW/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
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-lmPxCW/MySQL-python/
 
解决方案
$ sudo apt-get install libmysqlclient-dev  # 然后再重新安装
$ sudo pip install MySQL-python
 
本文永久更新地址:http://www.linuxdiyf.com/linux/26268.html