mysql-python: ERROR: Command "python setup.py egg_info" failed with error code 1
因為系統上要先安裝 mysql 和 mysql-connector-c:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install mysql | |
brew unlink mysql | |
brew install mysql-connector-c | |
brew link --overwrite mysql |
然後直接 pip install 可能還有錯誤:
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'cc' failed with exit status 1
試試看指定 LDFLAGS 再 pip install:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip install mysql-python |
應該能裝成功。