我正在尝试使用 go 模块(使用 go 1.11)初始化一个新的 go 项目。我不打算在 github 或其他地方发布它,它只是一个只有主包的临时/测试项目。
每当我尝试go mod init
在一个目录(在我的目录之外$GOPATH
)中运行时,我都会收到此错误:
go: cannot determine module path for source directory /Users/... (outside GOPATH, no import comments)
不使用 git(或其他 VCS)就不能初始化模块吗?或者有什么解决方法吗?
PIPIONE
相关分类