在使用pip安装MySQL-python时出现错误代码1。

3

我正在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开发文件了吗? - Ignacio Vazquez-Abrams
1个回答

5

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

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

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接