Mac pip安装mysql-python失败

问题描述 投票:7回答:2

我从网站上安装了MySQL和Workbench。我有一个django项目的requirements.txt:

Django==1.11.12
djangorestframework==3.8.2
django-cors-headers==2.2.0
drfdocs==0.0.11
mysql-python==1.2.5
django-rest-auth==0.9.3
django-allauth==0.35.0
nltk==3.2.5
django-extensions==2.0.7
pyparsing==2.2.0
pydot==1.2.4

我跑的时候

pip install -r requirements.txt

我有一个错误mysql_config not found。为了解决这个问题我跑了

PATH=$PATH:/usr/local/mysql/bin

它现在抛出

    _mysql.c:44:10: fatal error: 'my_config.h' file not found
    #include "my_config.h"
             ^~~~~~~~~~~~~
    1 error generated.
    error: command 'cc' failed with exit status 1

    ----------------------------------------
Command ""/Users/nitish/gitProjects/Vision Backlog/vb_env/bin/python" -u -c "import setuptools, tokenize;__file__='/private/var/folders/ql/_w2_rlvs2351pdcnzhn04sf40000gn/T/pip-install-M4ue9E/mysql-python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /private/var/folders/ql/_w2_rlvs2351pdcnzhn04sf40000gn/T/pip-record-7OCzf1/install-record.txt --single-version-externally-managed --compile --install-headers "/Users/nitish/gitProjects/Vision Backlog/vb_env/include/site/python2.7/mysql-python"" failed with error code 1 in /private/var/folders/ql/_w2_rlvs2351pdcnzhn04sf40000gn/T/pip-install-M4ue9E/mysql-python/

为什么会这样?

更新:跟随下面的解决方案抛出:

Collecting MySQL-python
  Using cached https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a202652828c73453cad/MySQL-python-1.2.5.zip
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/ql/_w2_rlvs2351pdcnzhn04sf40000gn/T/pip-install-X6b4rU/MySQL-python/setup.py", line 17, in <module>
        metadata, options = get_config()
      File "setup_posix.py", line 53, in get_config
        libraries = [ dequote(i[2:]) for i in libs if i.startswith(compiler_flag("l")) ]
      File "setup_posix.py", line 8, in dequote
        if s[0] in "\"'" and s[0] == s[-1]:
    IndexError: string index out of range
python django django-rest-framework pip
2个回答
7
投票

请试试:

CFLAGS=-Qunused-arguments CPPFLAGS=-Qunused-arguments pip install -r requirements.txt

如果不起作用:首先安装mysql-connector-c

brew install mysql-connector-c 
pip install MySQL-python

如果您使用的是Windows:

https://dev.mysql.com/downloads/connector/c/

您还可以检查当您尝试使用qazxsw poi安装时会发生什么

更新:如果你有Linux:请打开pip3.

然后:

/usr/local/bin/mysql_config

用。。。来代替:

#Create options
Libs = "-L $ pkglibdir "
Libs = " $ libs   -l"

保存并重新安装#Create options Libs = "- L $ pkglibdir" Libs = "$ libs -lmysqlclient -lssl -lcrypto"

mysql-python

对于Mac:

pip uninstall mysql-python
pip install mysql-python

应该有帮助。


17
投票

安装旧版本的MySQL对我有用:

LDFLAGS=-L/usr/local/opt/openssl/lib pip install mysql-python

看到:


0
投票

对我来说是:

this sof answer
© www.soinside.com 2019 - 2024. All rights reserved.