MySQL python组件安装

可使用pip进行安装

pip install MySQL-python

如出现以下错误

_mysql.c:44:23: 错误:my_config.h:没有那个文件或目录
    _mysql.c:46:19: 错误:mysql.h:没有那个文件或目录
    _mysql.c:47:26: 错误:mysqld_error.h:没有那个文件或目录
    _mysql.c:48:20: 错误:errmsg.h:没有那个文件或目录
    _mysql.c:88: 错误:expected specifier-qualifier-list before ‘MYSQL’
    _mysql.c:102: 错误:expected specifier-qualifier-list before ‘MYSQL_RES’
    _mysql.c: 在函数‘_mysql_Exception’中:

请在执行pip命令前安装

yum install mysql-devel
原文地址:https://www.cnblogs.com/qpanda/p/4596811.html