简体   繁体   English

pip上的错误代码1安装MySQL-python

[英]error code 1 on pip install MySQL-python

I'm trying this on osX: 我在osX上尝试这个:

pip install MySQL-python

But I'm getting this error: 但是我收到了这个错误:

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

This is the full message: 这是完整的信息:

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/

Make sure mysql_config is in your PATH when you run pip install , eg: 运行pip install时确保mysql_config在您的PATH ,例如:

locate mysql_config
PATH=/usr/local/mysql/bin/:$PATH pip install mysql-python

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM