cgo: C compiler "gcc" not found: exec: "gcc": executable file not found in $PATH
时间: 2023-07-19 14:04:59 浏览: 293
exec:"gcc" executable file not found in %PATH% MinGW64/32
这个错误提示意味着你的系统中没有找到 `gcc` 编译器。 `gcc` 是 C 语言的一个编译器,它需要在你的系统中安装才能编译 C 语言程序。
你可以通过安装 GCC 编译器来解决这个问题。如果你使用的是 Linux 操作系统,可以通过以下命令来安装:
```
sudo apt-get update
sudo apt-get install build-essential
```
如果你使用的是 macOS,可以通过以下命令来安装:
```
xcode-select --install
```
如果你使用的是 Windows,可以通过安装 MinGW 或 Cygwin 来安装 GCC 编译器。
阅读全文