zoukankan      html  css  js  c++  java
  • centos下pip安装mysql_python

    今天在使用pip安装mysql_python时,遇到一些问题,现记录下来。

    1.执行pip install mysql-python时,报错
    Running setup.py egg_info for package mysql-python  
        sh: mysql_config: command not found  
        Traceback (most recent call last):  
          File "<string>", line 16, in <module>  
          File "/tmp/pip-build/mysql-python/setup.py", line 18, 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  
        Complete output from command python setup.py egg_info:  
        sh: mysql_config: command not found  
      
    Traceback (most recent call last):  
      
      File "<string>", line 16, in <module>  
      
      File "/tmp/pip-build/mysql-python/setup.py", line 18, 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/mysql-python  
    Storing complete log in /root/.pip/pip.log  
    

     解决方法:yum install mysql-devel

    2.再次执行pip install mysql-python安装时,仍然报错

    error: command 'gcc' failed with exit status 1

     解决方法:yum install gcc python-devel

  • 相关阅读:
    Python(93)_网络编程基础
    Web前端(13)_路径
    Web前端(12)_注释
    Web前端(11)_base标签
    Python(91)_python复习
    Web前端(10)_css文本样式
    Web前端(9)_div+span等标签
    虚拟化(6)_CPU虚拟化
    虚拟化(5)_打开tcp监听
    虚拟化(4)_离线克隆与在线克隆
  • 原文地址:https://www.cnblogs.com/yangxia-test/p/4691947.html
Copyright © 2011-2022 走看看