@[toc]

异常


The "go-outline" command is not available. Run "go install -v github.com/ramya-rao-a/go-outline@latest" to install.

在这里插入图片描述

解决

cmd执行下面命令,切换代理源

 
#开启代理设置
go env -w GO111MODULE=on
 
#设置代理源 
go env -w GOPROXY=https://goproxy.cn,direct
 

在这里插入图片描述

成功

重启vscode

在这里插入图片描述