Golang 报错 package xxx is not in GOROOT or GOPATH 或者 cannot find package “xxx“ in any of

GO111MODULE=”off”

GO111MODULE="off" 的条件下,并且写的代码不在 $GOPATH/src 下,也就是说下面的 main.go 不在$GOPATH/src 目录下面,同时我想要使用当前项目目录下的另一个 module 里面的可导出标识符(函数、变量等),但是这个模块 不是标准库,或者说不在 GOROOT 里(一般我们不会修改 GOROOT 中的内容)

阅读更多