Mysql5.5升级到5.7后MySQLdb不能正常使用的问题解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql5.5升级到5.7后MySQLdb不能正常使用的问题解决相关的知识,希望对你有一定的参考价值。

ubuntu系统

报错信息1

Type "help", "copyright", "credits" or "license" for more information.
>>> import mysqldb
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/MySQLdb/__init__.py", line 19, in <module>
    import _mysql

报错信息2

[email protected]:/etc/mysql$ pip uninstall MySQL-python^C
[email protected]-H97-D3H:/etc/mysql$ pip install MySQL-python
Collecting MySQL-python
  Using cached MySQL-python-1.2.5.zip
    Complete output from command python setup.py egg_info:
    sh: 1: mysql_config: not found
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-YdPi5P/MySQL-python/setup.py", line 17, in <module>
        metadata, options = get_config()
      File "setup_posix.py", line 43, in get_config
        libs = mysql_config("libs_r")
      File "setup_posix.py", line 25, in mysql_config
        raise EnvironmentError("%s not found" % (mysql_config.path,))
    EnvironmentError: mysql_config not found
    
    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-YdPi5P/MySQL-python/

解决方法:

$ sudo pip uninstall MySQL-python
$ sudo apt-get install libmysqlclient-dev
$ sudo pip install MySQL-python

 

以上是关于Mysql5.5升级到5.7后MySQLdb不能正常使用的问题解决的主要内容,如果未能解决你的问题,请参考以下文章

mysql5.5升级到5.7

PHPStudy 把mysql5.5 升级到5.7

如何将 MySQL 5.5.40 升级到 MySQL 5.7

phpstudy里升级mysql版本到5.7

MySQL5.5升级至5.7

mac mysql5.5升级5.7记录