环境变量配置
GOROOT = D:softgogoRoot //goLang安装目录
GOPATH= D:softgogoPath //goLang项目目录
GOPROXY= https://mirrors.aliyun.com/goproxy/ //国内代理远程仓库
GO111MODULE= on //开启 go mod 模块管理功能
path = %GOROOT%in
VSCode配置
首选项 --> 设置 --> 文件夹选项卡--> 选中go项目 --> 搜索关键字 gopath --> 在setting.json 中打开 --> 输入以下内容 :(就是:在项目更目录里创建文件夹 .vscode ,然后在里面创建 settings.json 文件 ,文件里的内容就是下面的)
{ "go.autocompleteUnimportedPackages": true, "go.inferGopath": false, "go.toolsGopath": "D:/soft/go/goPath", "go.gopath": "${workspaceRoot}" }