https://learnku.com/go/t/42888taadis
问题描述

VScode中安装Go插件,由于墙的原因很可能会出现如下提示

Installing github.com/mdempsky/gocode FAILED
Installing github.com/uudashr/gopkgs/v2/cmd/gopkgs FAILED
Installing github.com/ramya-rao-a/go-outline FAILED
解决办法

调整Go的代理设置,win+R打开cmd,在命令窗口中操作

// 1.开启代理设置,Go 1.13 以上默认启用,可跳过此步
go env -w GO111MODULE=on

// 2.设置代理
go env -w GOPROXY=https://goproxy.io,direct
SUCCEEDED