Heim > Artikel > Entwicklungswerkzeuge > Die Installation der VSCode Go-Erweiterung ist fehlgeschlagen
Installation der VSCode Go-Erweiterung fehlgeschlagen
Installation der VSCode Go-Erweiterung ist fehlgeschlagen Websites „https://golang.org/x/tools“, auf die in China nicht zugegriffen werden kann, sodass die Installation fehlschlägt. Die Lösung besteht darin, die offizielle Bildbibliothek von Go auf Github zu verwenden und das Plug-in für die lokale Installation herunterzuladen .
Klonmethode
// 进入VS Code设置的GOPATH的src目录 cd /D D:\GoProjects\src // 创建golang.org目录,如果已经存在忽略该指令 mkdir golang.org // 进入golang.org目录 cd golang.org // 创建x目录,如果已经存在忽略该指令 mkdir x // 进入x目录 cd x // 获取tools源码 git clone https://github.com/golang/tools // 获取lint源码 git clone https://github.com/golang/lint
Plugins installieren
Installing github.com/mdempsky/gocode SUCCEEDED Installing github.com/ramya-rao-a/go-outline SUCCEEDED Installing github.com/acroca/go-symbols SUCCEEDED Installing golang.org/x/tools/cmd/guru SUCCEEDED Installing golang.org/x/tools/cmd/gorename SUCCEEDED Installing github.com/stamblerre/gocode SUCCEEDED Installing github.com/sqs/goreturns SUCCEEDED Installing golang.org/x/lint/golint SUCCEEDED All tools successfully installed. You're ready to Go :).
Empfohlenes Tutorial: "Go Tutorial》
Das obige ist der detaillierte Inhalt vonDie Installation der VSCode Go-Erweiterung ist fehlgeschlagen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!