go语言VScode see 'go help modules' (exit status 1)问题的解决过程

问题描述:

go: go.mod file not found in current directory or any parent directory; see 'go help modules' (exit status 1)

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第1张图片

解决方式:

(首先确保go语言环境安装正确)

go语言的运行需要很多依赖包,这些包在GitHub上,所以我们需要一些代理工具,来获取这些包

浏览器输入:

goproxy.io 

进入网站以后,我们可以找到Windows的Powershell的命令

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第2张图片

复制上图命令,进入并新建两个环境变量

 1.

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第3张图片

 2.

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第4张图片

新建完成后确认退出

进入powershell(Windows任务栏搜索框输入),并输入go env,查看是否有如下两个内容:

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第5张图片

 以上操作进行完毕后,重启VScode,并新建一个文件,在此文件中内打开终端,并获取go 模块:

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第6张图片

 其中红框内为GitHub的项目链接:

完成上述操作后,会出现一个go.mod文件:

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第7张图片

当出现了文件后,我们就可以进行新建程序进行go语言的编程了:

go语言VScode see 'go help modules' (exit status 1)问题的解决过程_第8张图片

总结

到此这篇关于go语言VScode see 'go help modules' (exit status 1)问题解决的文章就介绍到这了,更多相关go VScode see ‘go help modules‘ (exit status 1)内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(go语言VScode see 'go help modules' (exit status 1)问题的解决过程)