MySQLdbImportError: libmysqlclient. so.18 solution

Source: Internet
Author: User
This article describes how to solve MySQLdbImportError: libmysqlclient. so.18. if you need to install MySQLdb, you can refer to the following error when importing MySQLdb:

The code is as follows:


[Root @ lizhong MySQL-python-1.2.3] #/usr/local/bin/python2.7
Python 2.7.6 (default, Apr 10 2014, 15:45:39)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> Import MySQLdb
/Usr/local/lib/python2.7/site-packages/MySQL_python-1.2.3-py2.7-linux-x86_64.egg/_ mysql. py: 3: UserWarning: Module _ mysql was already imported from/usr/local/lib/python2.7/site-packages/MySQL_python-1.2.3-py2.7-linux-x86_64.egg/_ mysql. pyc, but/soft/MySQL-python-1.2.3 is being added to sys. path
Traceback (most recent call last ):
File" ", Line 1, in
File "MySQLdb/_ init _. py", line 19, in
Import _ mysql
File "build/bdist. linux-x86_64/egg/_ mysql. py", line 7, in
File "build/bdist. linux-x86_64/egg/_ mysql. py", line 6, in _ bootstrap __
ImportError: libmysqlclient. so.18: cannot open shared object file: No such file or directory


According to the last prompt, the file libmysqlclient. so.18 cannot be found, so you can find this file in the mysql installation directory and make a soft connection to/usr/lib.

The code is as follows:


Ln-s/usr/local/mysql/lib/libmysqlclient. so.18/usr/lib/libmysqlclient. so.18


For 64 systems:

The code is as follows:


Ln-s/usr/local/mysql/lib/libmysqlclient. so.18/usr/lib64/libmysqlclient. so.18


Import MySQLdb again and it will be normal:

The code is as follows:


[Root @ lizhong MySQL-python-1.2.3] #/usr/local/bin/python2.7
Python 2.7.6 (default, Apr 10 2014, 15:45:39)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> Import MySQLdb
>>>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.