Ubuntu 16.04 pip 安装 mysql-python 遇见 mysql_config not found和ImportError: No module named 'ConfigParse

因为在 Ubuntu 需要使用 Python 的连接库 MySQL-Python

出现的问题一:

$ pip install mysql-python
发生错误:


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-3JrXSl/mysql-python/

解决办法:

这是由于没有安装依赖导致,
安装 Ubuntu 源里面的一个包 libmysqlclient-dev 即可

sudoaptgetupdate s u d o a p t − g e t u p d a t e sudo apt-get install libmysqlclient-dev
再次安装 mysql-python 即可。

出现问题二:

安装时出现如下错误:
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File “”, line 1, in
File “/tmp/pip-install-q4duwlzc/MySQL-python/setup.py”, line 13, in
from setup_posix import get_config
File “/tmp/pip-install-q4duwlzc/MySQL-python/setup_posix.py”, line 2, in
from ConfigParser import SafeConfigParser
ImportError: No module named ‘ConfigParser’

原因:在 Python 3.x 版本后,ConfigParser.py 已经更名为 configparser.py 所以出错!

解决办法:找到文件 configparser ,更名为旧版本的名称 ConfigParser

cp /usr/local/Python34/lib/python3.4/configparser.py /usr/local/Python34/lib/python3.4/ConfigParser.py

你可能感兴趣的:(mysql)