Questions tagged «go-modules»

1
如何设置GOPRIVATE环境变量
我开始研究一个Go项目,它使用了Github私有存储库中的一些私有模块,每当我尝试运行go run main.go它时,都会出现以下410 Gone错误: 验证github.com/repoURL/go-proto@v2.86.0+incompatible/go.mod:github.com/repoURL/go-proto@v2.86.0+incompatible/go.mod:阅读https://sum.golang。 org/lookup/github.com/!repoURL/go-proto@v2.86.0+incompatible:410已消失 我可以轻松地从终端克隆私人仓库,这意味着我的ssh密钥配置正确。我在这里读到我需要设置GOPRIVATE环境变量,但是我不确定该怎么做。 任何人都可以回答或指向相关教程吗? 转到: v1.13,操作系统: macOS Mojave

3
从基于GOPATH的dep迁移到mod时,格式错误的模块路径“ xxxx / xxxx / uuid”在第一个路径元素中缺少点
$ go版本 1.13.3 我的文件夹结构如下: GOPATH +---src +--- my-api-server +--- my-auth-server +--- main.go +--- my-utils +--- uuid +--- uuid.go my-auth-server使用my-api-server/my-utils/uuid作为depenency 现在,当我使用基于GOPATH的模块系统时,它可以正常工作。但是当使用go模块时,当我go run main.go在my-auth-server其中运行时返回错误: build command-line-arguments: cannot load my-api-server/my-utils/uuid: malformed module path "my-api-server/my-utils/uuid": missing dot in first path element 任何想法如何解决这个问题?
12 go  go-modules 

1
在go模块文件(go.mod)中使用“ go”版本指令的含义是什么
给定以下go.mod文件: module foo go 1.12 require ( github.com/bar/baz v1.0.0 github.com/rat/cat v1.0.0 ) 什么是go 1.12说明什么?是否阻止foo针对其他任何版本的Go 编译模块?还是仅仅是foo建议的/必需的Go版本的指示器?这是我们每当发布新版本的go(每6个月)时就应更新的指令吗?
11 go  go-modules 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.