[Fixed]-ImproperlyConfigured MySQL in Django

1👍

This looks like a possible duplicate of this question and this one

It looks like the library is not where it should be. From your previous question it looks like you installed it at

/usr/local/mysql/

but Django is expecting it to be at /usr/lib/

Creating the symlinks like in the other questions should fix this for you:

sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/local/lib/libmysqlclient.18.dylib

sudo ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql

👤Fred

Leave a comment