配置
- 设置环境变量:
GO111MODULE=on
使用
1. 新建一个项目hello_go_molue
go mod init hello_go_molue
2. demo
module golearning
go 1.13
require github.com/sirupsen/logrus v1.4.2
3. 下载包
go mod download
注意:国内下载可能不成功,请执行
go env -w GOPROXY=https://goproxy.cn,direct
网友评论