当前位置: 首页 > 工具软件 > mod_wsgi > 使用案例 >

在 python3 安装 mod_wsgi 报错

夏侯臻
2023-12-01

在 python3 安装 mod_wsgi 报错

src/server/wsgi_python.h:24:10: fatal error: Python.h: 没有那个文件或目录
 #include <Python.h>
          ^~~~~~~~~~
compilation terminated.
error: command 'gcc' failed with exit status 1

可以尝试安装 python3-devel

yum install python3-devel

之前python2 安装的

yum install -y libffi-devel python-devel openssl-devel

导致与python3 不匹配

如果还报错 发现报错不是 not found gcc ,可以先安装 gcc模块

yum install -y gcc 
 类似资料: