centos下pip安装mysql_python

centos下用pip安装mysql_python报错

  Running setup.py egg_info for package mysql-python
    sh: mysql_config: command not found
    Traceback (most recent call last):
      File "", line 16, in 
      File "/tmp/pip-build/mysql-python/setup.py", line 18, in 
        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 "", line 16, in 

  File "/tmp/pip-build/mysql-python/setup.py", line 18, in 

    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

安装mysql-devel后正常运行

yum install mysql-devel


如果手工安装mysql_python

在setup_posix.py内找到mysql_config.path

变成mysql_config.path=/xxx/xxx(mysql安装路径/bin/mysql_config)


你可能感兴趣的:(python)