环境
window10 + VSCode1.63.2 + go1.17.6.windows-amd64 + Git-2.35.1.2-64-bit
一、环境配置
1、go语言下载
https://golang.google.cn/dl/go1.17.6.windows-amd64.msi
2、VSCode下载
https://code.visualstudio.com/docs/?dv=win
3、git
https://github.com/git-for-windows/git/releases/download/v2.35.1.windows.2/Git-2.35.1.2-64-bit.exe
二、安装
1、Go和vscode安装步骤:选好路径,一直【下一步】到底就好了。(本文go安装在c:\Go)
2、安装VS CODE GO插件 在VS CODE界面,单击左排最后一个按钮,出现插件管理界面,搜索go,搜到GO的首选插件,点"install"安装,这个安装很快完成。 然后,在任意一个目录创建test.go文件,右键,选择用code打开
3、vs code打开hello.go后,输入任何一个字符,在右下方出现"toools missing"的提示。单击提示并在弹出框中选择install ALL,然后开始安装缺少的工具,这个过程比较长,直到最后出现all tools successfully installed的提示。
三、vscode配置
1、seting.json
{
"workbench.colorTheme": "Default Dark+",
"go.gopath": "C:\\Go",
"go.goroot": "C:\\GoPath",
"go.inferGopath": true,
"go.autocompleteUnimportedPackages": true,
"go.gocodePackageLookupMode": "go",
"go.gotoSymbol.includeImports": true,
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.useCodeSnippetsOnFunctionSuggestWithoutType": true,
"go.docsTool": "gogetdoc",
"go.formatTool": "goimports",
"go.useLanguageServer": true
}
2、go.mod file not found in current directory or any parent directory; see ‘go help modules’ 解决办法, 在vscode终端执行
go env -w GO111MODULE=auto
|