美文网首页
Centos 7环境下安装MySQL-Python报错

Centos 7环境下安装MySQL-Python报错

作者: scbigpanda | 来源:发表于2019-04-29 10:53 被阅读0次

    # pip install MySQL-python

    DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.

    Collecting MySQL-python

      Using cached https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a202652828c73453cad/MySQL-python-1.2.5.zip

        ERROR: Complete output from command python setup.py egg_info:

        ERROR: sh: mysql_config: 未找到命令

        Traceback (most recent call last):

          File "<string>", line 1, in <module>

          File "/tmp/pip-install-gYxbp7/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

        ----------------------------------------

    ERROR: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-gYxbp7/MySQL-python/


    解决:

    #yum -y install mysql-devel 

    #yum groupinstall "Development Tools"

    相关文章

      网友评论

          本文标题:Centos 7环境下安装MySQL-Python报错

          本文链接:https://www.haomeiwen.com/subject/wuditxtx.html