configure: error: no acceptable C compiler found in $PATH
时间: 2023-08-02 21:05:47 浏览: 219
php使用ZipArchive提示Fatal error: Class ZipArchive not found in的解决方法
这个错误表明你的系统中没有可接受的 C 编译器。你需要安装一个 C 编译器,例如 GCC 或 Clang。
如果你使用的是 Linux 系统,可以尝试使用以下命令来安装 GCC:
```
sudo apt install gcc
```
如果你使用的是 macOS,可以尝试使用以下命令来安装 Xcode Command Line Tools:
```
xcode-select --install
```
如果你使用的是 Windows 系统,可以尝试使用 MinGW 或 Visual Studio 来安装一个 C 编译器。
阅读全文