环境:win7  go1.13.1

早听说GO111MODULE大名,今天才测试成功,步骤如下:

因为我的Go version >= 1.13,直接用go env -w 设置(注意大小写)

go env -w GOPROXY=https://goproxy.io,direct
go env -w GO111MODULE=on

注:可以用go env -u 恢复初始设置;GOPROXY的值应该还可以是https://mirrors.aliyun.com/goproxy/  或 https://goproxy.cn

测试:文章来源地址https://www.yii666.com/article/555147.htmlwww.yii666.com

1 在GOPATH之外,新建文件夹,如:e:/aaa/

package main
import(
log "github.com/sirupsen/logrus"
)
func main(){
log.WithFields(log.Fields{
"animal": "dog",
}).Info("一条舔狗出现了。")
}
go mod init aaa
go build

生成了aaa.exe,并且运行成功。

引用的 sirupsen/logrus  自动被下载到了   $gopath\pkg\mod\github.com下面

注:测试时直接用logrus.Debug("123"),结果什么也没输出。刚开始以为是网络或设置的问题,后来才发现是logrus.Debug这条语句自身就不输出,大概是这个库的bug吧。