1、添加环境变量
在【环境变量】中添加如下【用户变量】:
GO111MODULE
,值为on
2、创建文件夹
%GOPATH%/src/<project path>
3、初始化工程
go mod init
或
go mod init github.com/you/hello
4、在项目中新建文件main.go
,并添加测试代码
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run() // listen and serve on 0.0.0.0:8080
}
5、编译代码,将会自动下载包到%GOPATH%/pkg/mod
中
go build
参考资料
1.Go模块官方文档(英文)https://github.com/golang/go/wiki/Modules
2.Go模块简明教程(Go语言依赖包管理工具)https://github.com/wuyumin/tutorial/tree/master/zh-cn/Modules
转载请注明:作者gisxiaowei,首发简书 jianshu.com
有疑问加站长微信联系(非本文作者)