安裝GO語言環境之安裝Visual Studio Code插件


在安裝Visual Studio Code插件的時候,由於谷歌的限制,在下載下列插件的時候會報錯:

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

報錯內容:

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)

 

 

 

下面介紹如果繞過封鎖去獲取相應的插件:

 

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%

之后再執行以下操作:

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 Code

http://www.cnblogs.com/zsy/archive/2016/02/28/5223957.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM