首页 > 系统 > Linux > 正文

解决安装MySQL-python时发生错误方案

2024-08-27 23:59:41
字体:
来源:转载
供稿:网友

安装MySQL-python时发生错误:error:command 'gcc' failed with exit status 1其实就是有一些安装包没有安装成功了,我们只要安装一下就可以了.

部份错误代码:

  1. _mysql.c:35:23: fatal error: my_config.h: No such file or directory   
  2. compilation terminated.   
  3. error: command 'gcc' failed with exit status 1   
  4. The complete error message is as below --Vevb.com

主要错误关键字:error: command 'cc' failed with exit status 1

解决方法:

1、先看看mysql组件装了哪些?

命令:rpm -qa mysql*

如果缺少mysql-devel组件就安装。

命令:yum install mysql-devel

如果安装时有提示冲突,先remove掉以前的版本.

命令:yum remove mysql*

2、如果还报错,安装python-devel.

3、如果还报错,安装pypy-devel.

好了我们安装过各处组件之后就可以了,其实小编只是把mysql-devel组件安装成功问题就解决了.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表