Upgraded to Ubuntu 16.04 now MySQL-python dependen

2019-02-07 22:07发布

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 ?

5条回答
叛逆
2楼-- · 2019-02-07 22:35

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

This means you have a version of MySQLdb compiled against one version of MySQL, and are now trying to run it against a different version. The shared library version tends to change between major releases.

Solution: Rebuilt MySQLdb, or get the matching version of MySQL.

查看更多
干净又极端
3楼-- · 2019-02-07 22:48

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 MySQL

查看更多
我欲成王,谁敢阻挡
4楼-- · 2019-02-07 22:52

I had the same issue. I uninstalled and reinstalled MySQL-python:

pip uninstall MySQL-python
pip install MySQL-python
查看更多
不美不萌又怎样
5楼-- · 2019-02-07 22:53

I had this issue with python 3.6... when I used an environment with Python 3.5 it worked just fine.

查看更多
叛逆
6楼-- · 2019-02-07 22:54

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:

sudo -H pip uninstall mysqlclient

sudo -H pip install --no-binary mysqlclient mysqlclient
查看更多
登录 后发表回答