scripts/dtc/pylibfdt/libfdt_wrap.c:154:11: fatal error: Python.h: 没有那个文件或目录 154 | # include <Python.h> | ^~~~~~~~~~ compilation terminated. error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
时间: 2023-09-11 14:11:24 浏览: 335
完美解决node-sass@4.14.1 postinstall: `node scripts/build.js` 问题
这个错误是由于缺少Python开发库导致的,您需要使用以下命令安装Python开发库:
在Debian / Ubuntu上:
```
sudo apt-get install python-dev
```
在RHEL / CentOS上:
```
sudo yum install python-devel
```
在Fedora上:
```
sudo dnf install python-devel
```
安装完成后,再次尝试编译应该就可以了。
阅读全文