2016-09-29 184 views
0

我创建了一个Django项目及其工程,现在我正在尝试使用MySql进行配置,以便在Google中进行搜索并执行了一些方法,但是当我发生以下问题时:pip安装MySQL-python在linux中失败

Collecting MySQL-python 
Using cached MySQL-python-1.2.5.zip 
Complete output from command python setup.py egg_info: 
Traceback (most recent call last): 
    File "<string>", line 1, in <module> 
    File "/tmp/pip-build-lwubgejh/MySQL-python/setup.py", line 13, in <module> 
    from setup_posix import get_config 
    File "/tmp/pip-build-lwubgejh/MySQL-python/setup_posix.py", line 2, in <module> 
    from ConfigParser import SafeConfigParser 
ImportError: No module named 'ConfigParser' 

---------------------------------------- 
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-lwubgejh/MySQL-python/ 

找不到此错误的任何解决方案: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-lwubgejh/MySQL-python/

谢谢你的帮助。

回答

2

该库与Python 3不兼容。请按照advice in the Django docs的说明安装mysqlclient。

+0

pip安装mysqlclient 工作,thx –