"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Fix \"Library not loaded: libmysqlclient.16.dylib\" Error When Using MySQLdb in Python on macOS?

How to Fix \"Library not loaded: libmysqlclient.16.dylib\" Error When Using MySQLdb in Python on macOS?

Published on 2024-11-09
Browse:539

How to Fix \

Python: MySQLdb and "Library not loaded: libmysqlclient.16.dylib"

Setup

In an attempt to establish a development environment for Python/Django on macOS X 10.6, MySQL was installed from the provided DMG and MySQL-python was installed using pip.

Issue

Upon attempting to import MySQLdb, the following error was encountered:

Traceback (most recent call last):
  File "", line 1, in 
  File "/Library/Python/2.6/site-packages/MySQLdb/__init__.py", line 19, in 
    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

Resolution

To address this issue, it is necessary to set the DYLD_LIBRARY_PATH environment variable after installing MySQL-python:

export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/

This variable should be set to the directory containing the MySQL libraries, which is typically /usr/local/mysql/lib/.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3