python mysql库安装

报错:

root@localhost:~/test# pip install mysql-python
	Collecting mysql-python
	  Using cached MySQL-python-1.2.5.zip
		Complete output from command python setup.py egg_info:
		sh: mysql_config: command not found
		Traceback (most recent call last):
		  File "<string>", line 1, in <module>
		  File "/tmp/pip-build-vkQhN1/mysql-python/setup.py", line 17, in <module>
			metadata, options = get_config()
		  File "/tmp/pip-build-vkQhN1/mysql-python/setup_posix.py", line 43, in get_config
			libs = mysql_config("libs_r")
		  File "/tmp/pip-build-vkQhN1/mysql-python/setup_posix.py", line 25, in mysql_config
			raise EnvironmentError("%s not found" % (mysql_config.path,))
		EnvironmentError: mysql_config not found

解决:

apt-get install libmysqlclient-dev