无法执行gcc:没有此类文件或目录


27

我正在运行Ubuntu LTS,尝试做一些pip安装操作时遇到错误,例如scrapy。这是我得到的错误:

Unable to execute gcc: No such file or directory
Error: command 'gcc' failed with exit status 1

我正在virtualenv中安装pip。我尝试使用以下命令安装构建必需品,但仍然出现相同的错误:

apt-get -y install build-essential

谁能帮助我了解我哪里出了问题?

编辑-更多信息:

ubuntu@ip-10-164-8-155:/var/log$ gcc -v
The program 'gcc' can be found in the following packages:
 * gcc
 * pentium-builder
Try: sudo apt-get install <selected package>

您的输出是apt-get -y install build-essential什么?您肯定没有安装gcc可执行文件。
Alex G

Answers:


44

注意:从您的gcc -v输出尝试:sudo apt-get install 选定的程序包

sudo apt-get install gcc


该消息表明gcc未找到命令(),但是Ubuntu可以建议提供该命令的gcc软件包(在本例中为软件包)。
克莱里斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.