• 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

    shufeng@shufeng-H97-D3H:/etc/mysql$ pip uninstall MySQL-python^C
    shufeng@shufeng-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
  • 相关阅读:
    mfc给对话框添加背景
    科学计数法中的尾数、基、指数
    格式化输出符号详细说明(待补充)
    写入注册表
    C++ 注册表操作
    Run-Time Check Failure #3
    完美二叉树, 完全二叉树和完满二叉树学习
    GetModuleFileNameW
    [BJDCTF2020]ZJCTF,不过如此
    picoctf_2018_buffer overflow 1/2
  • 原文地址:https://www.cnblogs.com/alexkn/p/5885609.html
Copyright © 2020-2023  润新知