error:command ‘x86_64-linux-gnu-gcc’ failed with exit status 1

Ubuntu系统中在使用python导入库时报错。

解决方案

先查看当前的python是什么版本:

python3 -V

command ‘x86_64-linux-gnu-gcc‘ failed with exit status 1_gnu


可以看到是3.7,那么安装与之对应的dev:

sudo apt-get install python3.7-dev

然后激活虚拟环境,升级pip:

python3 -m pip install --upgrade pip

即可解决问题。