Mysql
 sql >> Datenbank >  >> RDS >> Mysql

OSX ld:Bibliothek für -lssl nicht gefunden

Ich hatte das gleiche Problem nach dem Upgrade auf osx Mojave und auf Python 3.7.2. Folgendes hat bei mir funktioniert:

# Required for mysqlclient, see brew info openssl
echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile
export LDFLAGS="-L/usr/local/opt/openssl/lib"
export CPPFLAGS="-I/usr/local/opt/openssl/include"

pip3 install mysqlclient

Ich hoffe es hilft. Weitere Informationen finden Sie hier .