标签:pre 如何 inux nload needed 用户 print 模块 gid
github很多使用go的项目都是使用go mod集成库的,很多库也都是github上的项目。但是现在国内下载这些资源都比较不容易。我们需要配置一些配置才可以。
之前一直觉得go对国内用户太不友好了,一般都是各种库太难配置了!每次看到go的项目都很头痛。
链接资源:
https://shockerli.net/post/go-get-golang-org-x-solution/
#开启GO111MODULE
// linux
export GO111MODULE=on
#goproxy.cn代理
#七牛也出了个国内代理 goproxy.cn 方便国内用户更快的访问不能访问的包,真是良心。
// linux
export GOPROXY=https://goproxy.cn
#脚本
download download modules to local cache (下载依赖的module到本地cache))
edit edit go.mod from tools or scripts (编辑go.mod文件)
graph print module requirement graph (打印模块依赖图))
init initialize new module in current directory (再当前文件夹下初始化一个新的module, 创建go.mod文件))
tidy add missing and remove unused modules (增加丢失的module,去掉未用的module)
vendor make vendored copy of dependencies (将依赖复制到vendor下)
verify verify dependencies have expected content (校验依赖)
why explain why packages or modules are needed (解释为什么需要依赖)
当clone了一个项目后,发现有go.mod文件时,可以使用以下命令:
go mod download
go env
2020年07月11日16:02:48
54、go mod使用——2020年07月11日15:46:14
标签:pre 如何 inux nload needed 用户 print 模块 gid
原文地址:https://www.cnblogs.com/oneapple/p/13284014.html