Hi I have the following terminal input and response. I was wondering if anyone knows what's going on with Mysqldb. I installed it using python setup.py build | python setup.py install

Python 2.6.1 (r261:67515, Aug  2 2010, 20:10:18) 
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import MySQLdb
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "build/bdist.macosx-10.6-universal/egg/MySQLdb/__init__.py", line 19, in <module>
  File "build/bdist.macosx-10.6-universal/egg/_mysql.py", line 7, in <module>
  File "build/bdist.macosx-10.6-universal/egg/_mysql.py", line 6, in __bootstrap__
ImportError: dlopen(/Users/cfarm/.python-eggs/MySQL_python-1.2.3-py2.6-macosx-10.6-universal.egg-tmp/_mysql.so, 2): Library not loaded: libmysqlclient.18.dylib
  Referenced from: /Users/cfarm/.python-eggs/MySQL_python-1.2.3-py2.6-macosx-10.6-universal.egg-tmp/_mysql.so
  Reason: image not found
>>> 
link|improve this question

Sounds like a duplicate of stackoverflow.com/questions/5531958/… – William Stearns Nov 22 '11 at 18:28
Found a temporary solution: sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/livmysqlclient.18.dylib anyone: 1. know why this works and 2. know why I have to do this? – locoboy Nov 22 '11 at 18:39
if it were linux I'd tell you to run ldconfig and make sure that path is included in your ld.conf. Not sure where it is on the crapples. :-P – William Stearns Nov 22 '11 at 22:46
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.