其他分享
首页 > 其他分享> > “The selected directory is not a valid home for Go SDK” Goland报错处理

“The selected directory is not a valid home for Go SDK” Goland报错处理

作者:互联网

使用g升级golang版本到1.17.*的时候goland无法配置sdk,报错如下

The selected directory is not a valid home for Go SDK

检查环境配置无误

解决办法

1.执行go version 找到自己安装的详细版本
2.编辑%G_HOME%/version/1.17.7/src/runtime/internal/sys/zversion.go文件(如果没使用g控制go版本也就是自己安装的编辑%GOROOT%/src/runtime/internal/sys/zversion.go文件)
添加如下代码:

const TheVersion = `go1.17.7`

3.重启goland即可导入成功

标签:selected,Goland,version,报错,go,home,goland,internal
来源: https://blog.csdn.net/Alen_xiaoxin/article/details/123038264