针对你遇到的错误信息“go: cannot find main module, but found .git/config in”,这里有几个可能的解决方案,你可以逐一尝试: 确认当前目录: 确保你当前所在的目录是Go模块目录,即该目录下应该包含一个go.mod文件。如果当前目录不包含go.mod文件,你需要切换到包含该文件的目录,或者在当前目录下创建一个新的Go...
解决方法 export GO111MODULE=auto 说明 此问题主要是老golang 项目构建可能会出现的,新的一般不对有此问题(都基于go mod 了) 参考资料 https://github.com/golang/go/issues/31997
解决方案1: 在项目的根目录下使用如下命令: go mod init (↑ 此命令可能会导致,在使用VsCode保存编辑时产生巨量的卡顿现象,CPU占用过高的情况) 解决方案2: 在Windows PowerShell 中输入如下命令: go env -w GO111MODULE=off
go: cannot find main module, but found .git/config in /media/haima/34E401CC64DD0E28/site/go/src/haimait/learn to create a module there, run: cd ../.. && go mod init 1. 2. 3. 4. 出错原因是开启了go mod,但是没有初使化生成go.mod文件 解决方法一: 关闭gomod haima@haima-PC:/...
编译器 新入手go,一通乱七八糟设置被坑以后,突然无法编译go go:cannot find main module;see 'go help modules' 经过几天的摸索,最终发现了问题所在 go modules导致 如果你确定你需要此功能 cd进入项目目录 输入go mod init 或在上层目录输入go mod init project_name ...
go: cannot find main module; see 'go help modules' 解决的方法: 1.设置环境变量 setGO111MODULE=auto 2.在项目根目录执行命令 go mod init module_name 在test目录下,即test模块 go mod init api GO111MODULE off:无模块支持,从 $GOPATH 和 vendor 文件夹寻找依赖包 ...
在运行之前写的测试代码时,遇到了报错go: cannot find main module; see 'go help modules',这就让我很是恼火了。明明之前是正常运行的,为啥现在不能运行了。 在一番排查后,排除了平台的问题(Windows,Linux),排除了IDE(Goland,VScode)的问题,排除了VScode插件以及配置文件的问题。
GO编译时出现错误:go: cannot find main module; see 'go help modules' 解决办法:cmd输入 将GO111MODULE改为空
but go build throw this "go: cannot find main module; see 'go help modules'" error. I try to delete export GO111MODULE=on in .profile, but this issue is still here. System details go version go1.12.2 linux/amd64 GOARCH="amd64" GOBIN="" GOCACHE="/home/ubuntu/.cache/go-build"...
bcmills changed the title go mod issue: standard library modules cmd/go: "cannot find main module" when running 'go build' on a .go source file Nov 19, 2018 Author greenpau commented Nov 19, 2018 @bcmills, try taking a system where go was never present. Downlod the tar.gz file...