2017-07-02 169 views
2

我在OSX嘗試此:錯誤代碼1安裝MySQL-python的

pip install MySQL-python 

但我發現了這個錯誤:

Command "python setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-istycM/MySQL-python/ 

這是一個完整的消息:

Collecting MySQL-python 
    Downloading MySQL-python-1.2.5.zip (108kB) 
    100% |████████████████████████████████| 112kB 189kB/s 
    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 "/private/tmp/pip-build-istycM/MySQL-python/setup.py", line 17, in <module> 
     metadata, options = get_config() 
     File "setup_posix.py", line 43, in get_config 
     libs = mysql_config("libs_r") 
     File "setup_posix.py", line 25, 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 1 in /private/tmp/pip-build-istycM/MySQL-python/ 
+0

您是否嘗試過安裝MySQL開發文件? –

回答

4

確保mysql_config在你PATH當您運行pip install,如:

locate mysql_config 
PATH=/usr/local/mysql/bin/:$PATH pip install mysql-python 
相關問題