当前位置:网站首页>【解决】package ‘xxxx‘ is not in GOROOT

【解决】package ‘xxxx‘ is not in GOROOT

2022-07-07 18:06:00 cztAI

错误

package ‘xxxx‘ is not in GOROOT

vscode 打印 GOROOT 路径不是现在 go 的安装路径,然后我把 GOROOT 这条路径给改了,报错

go: cannot find GOROOT directory

想到之前在 vscode 的终端用 go env -w 设置过环境,然后我试着用该方法改为现在 go 的安装路径,终于成功修复 [泪目]。

解决方法:

打开 vscode 终端,用 go 命令设置环境

go env -w GOROOT=【这里填go安装路径】
go env -w GOROOT=D:\go\

主要还是对环境配置不熟悉,乱配置导致的遗留问题,特此记录。

原网站

版权声明
本文为[cztAI]所创,转载请带上原文链接,感谢
https://blog.csdn.net/czt_666/article/details/125659575