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

virtualenv pip mysqldb mac os X python

Ich hatte ein ähnliches Problem, siehe mein Traceback:

>>> import MySQLdb
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Library/Python/2.6/site-packages/MySQLdb/__init__.py", line 19, in <module>
    import _mysql
ImportError: dlopen(/Library/Python/2.6/site-packages/_mysql.so, 2): Library not loaded: libmysqlclient.16.dylib
  Referenced from: /Library/Python/2.6/site-packages/_mysql.so
  Reason: image not found

Ich habe diese Variablen in mein .bash_profile eingefügt :

export DYLD_LIBRARY_PATH="/usr/local/mysql/lib/:$DYLD_LIBRARY_PATH"

Und als ich eine Python-CGI-Anwendung mit Apache ausgeführt habe, habe ich dieselbe Variable mit der SetEnv-Direktive gesetzt:

<Directory "/path/to/app">
    SetEnv DYLD_LIBRARY_PATH /usr/local/mysql/lib/:$DYLD_LIBRARY_PATH
    ...
</Directory>

Und jetzt funktioniert alles.