项目目录: D:\go_www\src\test
前提
1. GOPATH 下的 bin 目录添加到 PATH 变量里。
安装 govendor
go get -u github.com/kardianos/govendor
安装后 GOPATH\bin 目录下会自动生成 govendor.exe
执行 初始化
cd D:\go_www\src\test
govendor init
正常情况下上面的命令会在 test 目录里创建 vendor 目录和 vendor/vendor.json 。
问题解决:
如果报错那就:
1. 如果 GOPATH 设有多条,先删除其他的,只保留当前目录的(D:\go_www)
2. 在当前项目目录下创建 src 目录,绝对路径为 D:\go_www\src\test\src\ (不知道为什么要这样)
然后在执行 govendor init
遇到的错误:
Error: FindFirstFile E:\go_www: The system cannot find the file specified. 显示具体的其他路径(gopath 路径之一),对应解决方案1
Error: FindFirstFile src: The system cannot find the file specified. 对应解决方案 2