ubuntu系统
报错信息1
Type "help", "copyright", "credits" or "license" for more information.
>>> import MySQLdb
Traceback (most recent call last):
File "<stdin>", line , in <module>
File "/usr/local/lib/python2.7/dist-packages/MySQLdb/__init__.py", line , in <module>
import _mysql
报错信息2
shufeng@shufeng-H97-D3H:/etc/mysql$ pip uninstall MySQL-python^C
shufeng@shufeng-H97-D3H:/etc/mysql$ pip install MySQL-python
Collecting MySQL-python
Using cached MySQL-python-1.2..zip
Complete output from command python setup.py egg_info:
sh: : mysql_config: not found
Traceback (most recent call last):
File "<string>", line , in <module>
File "/tmp/pip-build-YdPi5P/MySQL-python/setup.py", line , in <module>
metadata, options = get_config()
File "setup_posix.py", line , in get_config
libs = mysql_config("libs_r")
File "setup_posix.py", line , 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 in /tmp/pip-build-YdPi5P/MySQL-python/
解决方法:
$ sudo pip uninstall MySQL-python
$ sudo apt-get install libmysqlclient-dev
$ sudo pip install MySQL-python