web-dev-qa-db-ja.com

Mac pip install mysql-pythonが失敗しました

MySQLとWorkbenchをWebサイトからインストールしました。私が持っている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
8
Thinker

してみてください:

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/

pip3.でインストールしようとしたときに何が起こったかを確認することもできます

UPDATE:Linuxを使用している場合:/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を再インストールします。

pip uninstall mysql-python
pip install mysql-python

Mac用:

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

役立つはずです。

11
user9008857

古いバージョンのMySQLをインストールするとうまくいきました。

brew remove mysql
brew install [email protected]
brew link --force [email protected]
pip install mysql-python

見る:

23
Sergey Belash

Mysqlをアンインストールし、MySql 5.7をインストールするだけで修正されます!!!!

上記のソリューションのいずれかで成功しなかった場合、MySqlバージョンが要件に一致していないことを意味します。私はそれがPythonまたはPyCharm、そして私はvirtualenvとcondaを使用したが運がないためだと思っていたので、私の依存関係を友人のコンピュータの1つと比較したとき、それはMySqlバージョンでした。 5.7およびその正常に動作します。

0
Syed ADnan

私にとっては:

brew install mysql-connector-c 
pip install MySQL-python
pip install mysql-connector
0
David Webster