VS Code运行go报错:无法将“go”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。
在环境变量已配好和安装了go插件的前提下,
错误提示
go : 无法将“go”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。
所在位置 行:1 字符: 1
+ go run .\example\01-hello\main.go
+ ~~
+ CategoryInfo : ObjectNotFound: (go:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
在terminal中输入
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine")
即可成功运行