我在 Windows 8.1 64位上使用go 1.5.1.我没有在我的环境中设置GO15VENDOREXPERIMENT.我安装了最新版本的git和bazaar. 我想获得gomniauth包: go get github.com/stretchr/gomniauth 即使该过程完成没有任何错误
我想获得gomniauth包:
go get github.com/stretchr/gomniauth
即使该过程完成没有任何错误,也不会引入很多依赖项.
例如,在编译我的应用程序(取决于gomniauth)时,我收到以下错误:
..\github.com\stretchr\codecs\xml\simple_xml_codec.go:5:2: cannot find package "github.com/clbanning/x2j" in any of: C:\Go\src\github.com\clbanning\x2j (from $GOROOT) C:\work\src\github.com\clbanning\x2j (from $GOPATH) ..\github.com\stretchr\codecs\msgpack\msgpack_codec.go:6:2: cannot find package "github.com/ugorji/go/codec" in any of: C:\Go\src\github.com\ugorji\go\codec (from $GOROOT) C:\work\src\github.com\ugorji\go\codec (from $GOPATH) ..\github.com\stretchr\codecs\bson\bson_codec.go:5:2: cannot find package "labix.org/v2/mgo/bson" in any of: C:\Go\src\labix.org\v2\mgo\bson (from $GOROOT) C:\work\src\labix.org\v2\mgo\bson (from $GOPATH)
它似乎引入了gomniauth的直接依赖关系,但并没有引入依赖关系的依赖关系.我已经从我的GOPATH / src以及GOPATH / pkg中删除了stretchr文件夹,但是在运行go go多次之后,它仍然没有拉出超出第二级的任何依赖项.
我100%确信我的网络问题没有问题.我可以使用我的浏览器或卷曲访问那些github repos.
将目录更改为您的项目,然后尝试去获取./ …例如.:
cd C:\work\src\github.com\stretchr\gomniauth go get ./...
或者只是去找github.com/stretchr/gomniauth / ……正如Amit Kumar Gupta建议的那样