I just upgraded my Ubuntu install to 16.04 and this seems to have broken my mysql dependencies in the MySQL-python package.
Here is my error message:
File "/opt/monitorenv/local/lib/python2.7/site-packages/sqlalchemy/engine/__init__.py", line 386, in create_engine
return strategy.create(*args, **kwargs)
File "/opt/monitorenv/local/lib/python2.7/site-packages/sqlalchemy/engine/strategies.py", line 75, in create
dbapi = dialect_cls.dbapi(**dbapi_args)
File "/opt/monitorenv/local/lib/python2.7/site-packages/sqlalchemy/dialects/mysql/mysqldb.py", line 92, in dbapi
return __import__('MySQLdb')
File "/opt/monitorenv/local/lib/python2.7/site-packages/MySQLdb/__init__.py", line 19, in <module>
import _mysql
ImportError: libmysqlclient.so.18: cannot open shared object file: No such file or directory
So basically the import_mysql is looking for an so
file that doesn't exist because in Ubuntu 16.04, I have libmysqlclient20
installed.
And libmysqlclient18 is not available.
As far as I am aware (or at least I believe) my python libraries are up to date with the latest versions.
(I tried running pip install --upgrade mysql-python
which indicated it was up to date).
Do you guys have any suggestions ?
My problem was that I was using wheelhouse from old OS.
The problem was solved when I uninstalled/installed the package or updated wheelhouse...
From docs:
http://mysql-python.sourceforge.net/FAQ.html#importerror
I ended up finding the solution to my problems with
pip install --no-binary MySQL-python MySQL-python
as stated in this thread : Python's MySQLdb can’t find libmysqlclient.dylib with Homebrewed MySQLI had the same issue. I uninstalled and reinstalled MySQL-python:
I had this issue with python 3.6... when I used an environment with Python 3.5 it worked just fine.
Thank for Largaroth. If you use
mysqlclient
on Ubuntu 16.04 and have error:ImportError: libmysqlclient.so.18: cannot open shared object file: No such file or directory
You can fix: