错误:'go'命令无法识别
执行命令“go run main.go”后,您遇到以下错误:
go : The term 'go' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
解决方案
要修复此错误,您需要将 Go 可执行文件的路径添加到系统的环境变量中。操作方法如下:
$env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine")
这将检索当前路径变量.
;C:\Go\bin
分号 (;) 将新路径与现有路径分隔开。
$env:Path = $env:Path + ";C:\Go\bin"
您可能需要将“C:Gobin”替换为 Go 安装的正确路径。
现在,您应该能够运行“go run main.go”命令而不会遇到错误.
以上是为什么我的终端无法识别'go”命令?的详细内容。更多信息请关注PHP中文网其他相关文章!