Environment: MacBook Pro, OSX 10.6, Python 2.6.1 64 bit, MySQL 5.X 64 bit

I am having problems installing MySQLdb for use with Django. After installing everything I am able to open the python interpreter and execute:

import MySQLdb

This works fine. I am also able to create and run django apps and host them using the development server:

./manage.py runserver

But I am now trying to host this django app in my local apache. So I installed and configured mod_wsgi and added a virtual host to httpd.conf setting the location of my *.wsgi script. From that script I am able to define the application function en return a simple Hello World string.

But when I try to run:

import MySQLdb

inside a try block in my *.wsgi script, the caught exception says the following:

dlopen(/Library/Python/2.6/site-packages/_mysql.so, 2): Library not loaded: 
libmysqlclient.18.dylib Referenced from: /Library/Python/2.6/site-packages/_mysql.so 
Reason: image not found

So, simply put, the problem is that my MySQLdb adapter works when using it in the python interpreter and django development server, but not through Apache and mod_wsgi.

Any suggestions?

link|improve this question
1  
is this path-> /Library/Python/2.6/site-packages/ accessible by Apache ? – Dantario May 18 '11 at 21:26
Does that dylib exist? – Ignacio Vazquez-Abrams May 18 '11 at 21:33
1  
Did you use Apple supplied Apache and Python or did you build your own? It can be important. – Graham Dumpleton May 18 '11 at 22:54
@Dantario How would i know if Apache can reach .../site-packages/? – Justus Burger May 19 '11 at 6:18
@Ignacio Jip it exists. And I added the ENV var so it can be found. – Justus Burger May 19 '11 at 6:19
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.