cgo: C compiler "gcc" not found: exec: "gcc": executable file not found in %PATH%
时间: 2023-06-18 13:08:36 浏览: 149
exec:"gcc" executable file not found in %PATH% MinGW64/32
这个错误提示是因为你的计算机上找不到 gcc 编译器的可执行文件。gcc 是 C 语言的编译器,用于将 C 语言源代码编译成可执行文件。
解决这个问题的方法是安装 gcc 编译器。你可以在命令行中输入以下命令来安装 gcc:
- Ubuntu/Debian 系统:`sudo apt-get install build-essential`
- CentOS/Fedora 系统:`sudo yum groupinstall 'Development Tools'`
安装完成后,你应该能够使用 gcc 编译器了。
阅读全文