Please enable Javascript to view the contents

VS Code 无法下载 Go 插件的工具包

 ·  ☕ 1 分钟

VS Code 安装 Go 插件之后,打开 Go 项目时,编辑器会提示安装工具包。

但是 golang.org 无法直接访问,我们需要将包手动下载到 GOPATH 目录,进行安装。

  1. 创建包目录
1
2
cd $GOPATH
mkdir -p src/golang.org/x
  1. 下载包
1
2
3
cd src/golang.org/x
git clone https://github.com/golang/tools.git
git clone https://github.com/golang/lint.git
  1. 安装包
1
2
go get golang.org/x/tools/...
go get github.com/golangci/golangci-lint/cmd/[email protected]

微信公众号
作者
微信公众号