在安裝Visual Studio Code插件的時候,因爲谷歌的限制,在下載下列插件的時候會報錯:html
go get -u -v github.com/nsf/gocode go get -u -v github.com/rogpeppe/godef go get -u -v github.com/golang/lint/golint go get -u -v github.com/lukehoban/go-find-references go get -u -v github.com/lukehoban/go-outline go get -u -v sourcegraph.com/sqs/goreturns go get -u -v golang.org/x/tools/cmd/gorename go get -u -v github.com/tpng/gopkgs go get -u -v github.com/newhook/go-symbols
報錯內容:git
Fetching https://golang.org/x/tools/cmd/gorename?go-get=1 Parsing meta tags from https://golang.org/x/tools/cmd/gorename?go-get=1 (status code 200) get "golang.org/x/tools/cmd/gorename": found meta tag main.metaImport{Prefix:"go lang.org/x/tools", VCS:"git", RepoRoot:"https://go.googlesource.com/tools"} at h ttps://golang.org/x/tools/cmd/gorename?go-get=1 get "golang.org/x/tools/cmd/gorename": verifying non-authoritative meta tag Fetching https://golang.org/x/tools?go-get=1 Parsing meta tags from https://golang.org/x/tools?go-get=1 (status code 200) golang.org/x/tools (download)
下面介紹若是繞過封鎖去獲取相應的插件:github
md %GOPATH%\src\github.com\golang cd %GOPATH%\src\github.com\golang git clone https://github.com/golang/tools.git tools md %GOPATH%\src\golang.org\x\tools xcopy /s /e %GOPATH%\src\github.com\golang\tools
前提是設置好 %GOPATH%golang
以後再執行如下操做:bash
go install github.com/nsf/gocode go install sourcegraph.com/sqs/goreturns go install github.com/golang/lint/golint go install github.com/newhook/go-symbols go install golang.org/x/tools/cmd/guru go install golang.org/x/tools/cmd/gorename go install github.com/rogpeppe/godef go install github.com/lukehoban/go-outline
能夠參考下面的網址設置Visual Studio Codegoogle
http://www.cnblogs.com/zsy/archive/2016/02/28/5223957.html插件