部份错误代码
_mysql.c:35:23: fatal error: my_config.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
The complete error message is as below
主要错误关键字: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组件安装成功问题就解决 了。
时间: 2024-12-03 23:23:58