当前位置: 首页 > 工具软件 > LionWiki > 使用案例 >

VSCode安装GO插件失败解决方案

公良信然
2023-12-01

VSCode安装GO插件失败解决方案

在 VSCode 中安装 Go 插件总提示失败:The "go-outline" command is not available. Run "go get -v github.com/ramya-rao-a/go-outline"to install ..

 GO插件的安装需要访问外网,导致插件下载失败,通过设置GO的代理访问到插件下载源即可

#控制台执行命令
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct

重新启动VSCode,重新安装即可

 类似资料: