ubuntu ./configure: error: C compiler cc is not found
时间: 2024-06-16 21:07:26 浏览: 380
ccs调试中报错
在Ubuntu中,当你运行"./configure"命令时,出现错误信息"configure: error: C compiler cc is not found",这通常表示你的系统缺少C编译器。
要解决这个问题,你需要安装C编译器。在Ubuntu中,常用的C编译器是gcc。你可以通过以下步骤安装gcc:
1. 打开终端(Terminal)。
2. 运行以下命令更新软件包列表:
```
sudo apt update
```
3. 安装gcc编译器:
```
sudo apt install build-essential
```
这个命令会安装一些必要的编译工具,包括gcc。
安装完成后,再次运行"./configure"命令,应该就不会再出现"C compiler cc is not found"的错误了。
阅读全文