pip install MySQL-python 在 linux 中失败

pip install MySQL-python failed in linux

我已经创建了一个 Django 项目并且它的工作正常,现在我正在尝试使用 MySql 配置它所以在 Google 中搜索并做了一些方法但是当我 pip install MySQL-python 出现以下问题:

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/

谢谢你的帮助。

此库与 Python 不兼容 3. 按照 advice in the Django docs 安装 mysqlclient。