glide是golang的一款包管理工具,就像Java下的Maven(当然Maven的定位不只是包管理工具)。今天试用了一下,记录一下使用过程和遇到的一些坑。
环境Windows 7,Goland,Go 1.8.4
安装 go get -u github.com/Masterminds/glide在Goland中打开File——Settings——Tools——External Tools,根据自己的gopath添加gopath\bin\glide.exe,如图
在Goland中输入命令:
glide如果出现提示就证明安装成功了。
使用不多说,直接上命令:
glide init然后就会生成对应的glide.yaml,生成过程中根据自己需要选择合适的配置就行。
我的glide.yaml如下:
现在就可以通过命令下载对应的dependencies了
glide install然后就毫无意外的出错了。。。。
[WARN] Unable to set version on golang.org/x/net/html to . Err: Cannot detect VCS [ERROR] Error scanning golang.org\x\net\html: open C:\Users\yourUserName\.glide\cache\src\https-golang.org-x-net-html: The system cannot find the file specif ied. [ERROR] Failed to retrieve a list of dependencies: Error resolving imports这是由于墙的原因导致有些google的包下不下来,我们可以使用mirror命令指定镜像,从镜像地址下载。命令如下:
glide mirror set https://golang.org/x/net/html https://github.com/golang/net --vcs git glide mirror set https://golang.org/x/net/publicsuffix https://github.com/golang/net --vcs git glide mirror set https://golang.org/x/sys/unix https://github.com/golang/sys --vcs git再次运行:
glide install再出错:
[ERROR] Unable to export dependencies to vendor directory: Error moving files: exit status 1. output: Access is denied. 0 dir(s) moved.查了资料发现这是Windows下和文件权限有关的一个bug,github上面有相关讨论:
https://github.com/Masterminds/glide/issues/873
网友给出了两个解决方案:
修改glide源代码。
修改系统UAC。
这里采用第一种方法:
// 找到github.com/Masterminds/glide/path/winbug.go // 修改 func CustomRename(o, n string) error // 把 cmd := exec.Command("cmd.exe", "/c", "move", o, n) 改为 cmd := exec.Command("robocopy.exe", o, n, "/e")保存修改,重新编译。
go get -u github.com/Masterminds/glide然后运行:
glide install如无意外的话你就可以在项目路径看到vendor文件夹了。
如果你有更好的办法或者遇到了别的问题也欢迎一起讨论。
Referencehttps://studygolang.com/articles/7129
https://github.com/Masterminds/glide/issues/873
https://my.oschina.net/quicker/blog/831352?hmsr=studygolang.com&utm_medium=studygolang.com&utm_source=studygolang.com