web-dev-qa-db-ja.com

mysqlclientをmac OS x mojaveにインストールできません

私はmysqlclientをmac os x mojaveにインストールしようとしています:

Sudo pip3 install mysqlclient

次のエラーが発生します。

clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers -Dversion_info=(1,3,13,'final',0) -D__version__=1.3.13 -I/usr/local/Cellar/mysql/8.0.12/include/mysql -I/usr/local/Cellar/python3/3.6.4/Frameworks/Python.framework/Versions/3.6/include/python3.6m -c _mysql.c -o build/temp.macosx-10.13-x86_64-3.6/_mysql.o
    clang -bundle -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-3.6/_mysql.o -L/usr/local/Cellar/mysql/8.0.12/lib -lmysqlclient -lssl -lcrypto -o build/lib.macosx-10.13-x86_64-3.6/_mysql.cpython-36m-darwin.so
    ld: library not found for -lssl
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    error: command 'clang' failed with exit status 1

    ----------------------------------------
Command "/Users//Development/apps/hid_ve/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/private/tmp/pip-install-1mo7e_ok/mysqlclient/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/tmp/pip-record-9bwluwz6/install-record.txt --single-version-externally-managed --compile --install-headers /Users//Development/apps/hid_ve/bin/../include/site/python3.6/mysqlclient" failed with error code 1 in /private/tmp/pip-install-1mo7e_ok/mysqlclient/
5
Atma

Mojaveにアップグレードした後、同じエラーが発生しました。掘り下げた後、次の手順が役立ちます。

brew info openssl

以下の情報が役立ちます。魚を使っています。 bashまたはzshを使用している場合、メッセージは異なる場合があります。

コンパイラがopensslを見つけるには、次のように設定する必要があります:set -gx LDFLAGS "-L/usr/local/opt/openssl/lib" set -gx CPPFLAGS "-I/usr/local/opt/openssl/include"

上記のコマンドを実行すると、すべてが正常に戻ります。

3
Han He

export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/

from ld:Mac OS Sierraのアップグレード後に-lsslのライブラリが見つかりません

わたしにはできる。

1
欧阳松

私は以下で問題を解決しました:

  1. フォルダに移動:

/ライブラリ/ Developer/CommandLineTools/Packages

  1. クリックしてインストール:macOS_SDK_headers_for_macOS_10.14.pkg
  2. 仮想環境を削除する
  3. 新しい仮想環境を作成します。
  4. Mysqlclientをインストールします:pip3 install mysqlclient
1
Atma

使用してみてください:-

pip install mysqlclient = 1.4.2.post1

0
gautamaggarwal