command 'gcc' failed with exit status 1错误问题的解决办法
错误提示
#include "Python.h"
^
compilation terminated.
error: command 'gcc' failed with exit status 1
include "Python.h"
看到是缺失"Python.h",所以就安装以下python的devel环境
python2执行以下命令
yum install python-devel
python3执行以下命令
yum install python3-devel
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。