前言
如果你正在使用Golang
的dep工具,我相信你可能会遇到这个问题
dep 版本
$ dep version dep: version : devel build date : git hash : go version : go1.10 go compiler : gc platform : linux/amd64
当前Latest release
为v0.4.1
问题
使用dep
包管理工具时,无论执行dep init -v
或是dep ensure
总是报版本错误(no more versions
、no versions
)的问题
$ dep ensure Solving failure: No versions of xxxx met constraints: master: unable to update checked out version: fatal: reference is not a tree: 2c5e7ac708aaa719366570dd82bda44541ca2a63 : command Failed: [git checkout 2c5e7ac708aaa719366570dd82bda44541ca2a63]: exit status 128
原因
算是一个bug
,是由于缓存的错误没有得到正确的更新
解决方案
rm -rf $GOPATH/pkg/dep/sources
然后再重新执行dep ensure
或是dep init -v
就可以了
你又遇到过什么奇奇怪怪的问题呢,交流一下 :=)
原文链接:https://www.f2er.com/go/187341.html