当尝试构建一个简单的“Hello,世界!”以 Go 为例,更新到 Go 版本 1.16.2 后,您可能会遇到以下错误:
go: go.mod file not found in current directory or any parent directory; see 'go help modules'
尝试使用建议的修复、设置 GO111MODULE=on 和 GOPROXY=https://proxy 来解决问题。 golang.org,直接,可能不会成功。
解决这个问题问题:
go env -w GO111MODULE=off
以上是为什么 Go 更新后出现'go: go.mod file not found”,如何修复?的详细内容。更多信息请关注PHP中文网其他相关文章!