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

VS Code 安装 Go 插件之后,打开 Go 项目时,编辑器会提示安装工具包。但是 golang.org 无法直接访问,我们需要将包手动下载到 GOPATH 目录,进行安装。

  • 创建包目录
  • 1
    2
    
    cd $GOPATH
    mkdir -p src/golang.org/x
    
  • 下载包
  • 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
    2
    
    go get golang.org/x/tools/...
    go get github.com/golangci/golangci-lint/cmd/[email protected]