尝试从 pypi 安装 Python 包时出现“命令‘gcc’失败”

尝试从 pypi 安装 Python 包时出现“命令‘gcc’失败”

我正在尝试从 Python 包索引 () 安装“pyskein” sudo easy_install3 skein,但是安装失败并出现以下错误:

src/threefish.c:23:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: Setup script exited with error: command 'gcc' failed with exit status 1

我已经安装了该build-essential

答案1

您的系统缺少 Python 标头。要修复此问题,请运行

sudo apt-get install python-dev

或者

sudo apt-get install python3-dev

相关内容