【问题标题】:error code 1 on pip install MySQL-pythonpip install MySQL-python 上的错误代码 1
【发布时间】:2017-12-06 02:58:26
【问题描述】:

我在 osX 上试试这个:

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/

【问题讨论】:

  • 您是否尝试安装 MySQL 开发文件?

标签: python mysql pip mysql-python setuptools


【解决方案1】:

当您运行pip install 时,确保mysql_config 在您的PATH 中,例如:

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

【讨论】:

    猜你喜欢
    • 2019-05-13
    • 2017-11-04
    • 2020-08-24
    • 1970-01-01
    • 2015-03-24
    • 2012-02-23
    • 2018-08-25
    • 2018-12-24
    • 2019-01-22
    相关资源
    最近更新 更多