go: module github.com/gin-gonic/gin: Get “https://proxy.golang.org/github.com/gin-gonic/gin/@v/list“

当使用命令:go get -u github.com/gin-gonic/gin

报错:go: module github.com/gin-gonic/gin: Get “https://proxy.golang.org/github.com/gin-gonic/gin/@v/list”: dial tcp 142.251.42.241:443: i/o timeout

更换代理即可:

go env -w GOPROXY=https://goproxy.cn

你可能感兴趣的:(golang,gin,服务器)