您的位置:首页 > 编程语言 > Python开发

ubuntu 安装mysql 错误Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-lmPxC

2016-11-22 00:00 1516 查看
摘要: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-lmPxCW/MySQL-python/

错误

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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐