vscode 无法安装golang.org安装包的问题

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

一、问题 今天在安装vscode时,报错

github.com/ramya-rao-a/go-outline (download)
Fetching https://golang.org/x/tools/go/buildutil?go-get=1
https fetch failed: Get https://golang.org/x/tools/go/buildutil?go-get=1: dial tcp 216.239.37.1:443: connect: connection refused

golang.org在国内被墙了,根本无法下载golang.org的安装包和源码包,以及类库。 二、解决方式 在github中找到解决方法,

mkdir -p $GOPATH/src/golang.org/x/  
cd $GOPATH/src/golang.org/x/
git clone https://github.com/golang/tools.git

然后可以安装了

go get -v -u github.com/ramya-rao-a/go-outline

欢迎扫描下方二维码,持续关注:

互联网工程师(id:phpstcn),我们一起学习,一起进步

转载于:https://my.oschina.net/xushuhui/blog/3005180

你可能感兴趣的:(golang,开发工具,git)