文章出處
文章列表
問題0:
在安裝 mysql-python時,會出現:
sh: mysql_config: not found
Traceback (most recent call last):
File "setup.py", line 15, in <module>
metadata, options = get_config()
File "/home/zhxia/apps/source/MySQL-python-1.2.3/setup_posix.py", line 43, in get_config
libs = mysql_config("libs_r")
File "/home/zhxia/apps/source/MySQL-python-1.2.3/setup_posix.py", line 24, in mysql_config
raise EnvironmentError("%s not found" % (mysql_config.path,))
EnvironmentError: mysql_config not found
只要原因是沒有安裝:libmysqlclient-dev
sudo apt-get install libmysqlclient-dev
找到mysql_config文件的路徑
sudo updatedb
locate mysql_config
mysql_config的位置為:/usr/bin/mysql_config
在mysql-python源碼包下找到:setup_posix.py 文件,然后找到文件中的 mysql_config.path 將其值改為:/usr/bin/mysql_config,然后 sudo python setup.py install ,就ok了
問題1:
ERROR: /bin/sh: 1: xslt-config: not found
make sure the development packages of libxml2 and libxslt are installed **
參考:
http://stackoverflow.com/questions/5178416/pip-install-lxml-error
http://stackoverflow.com/questions/21489720/installing-pyquery-via-pip
解決:
apt-get install libxslt1-dev
問題2:
error: Setup script exited with error: command 'gcc' failed with exit status 1
通過安裝如下庫即可解決:
sudo apt-get install python-dev
文章列表
全站熱搜