我已经安装、设置并运行了 hello world;我遵循了这些指示。我的工作区组织如下:
gocode/
bin/
pkg/
src/
github.com/
my_username/
hello/
hello.go
anomalyzer/
algorithms.go
...
README.md
我想开始使用来自分叉 GitHub 存储库lytics/anomalyzer 的Go 代码。我怎样才能做到这一点?我分叉了 repo 并在其中设置了一个本地克隆,github.com/anomalyzer/如上所示。但是github.com/anomalyzer/我尝试从目录中go install获取错误消息algorithms.go:5:2: cannot find package "github.com/drewlanenga/govector" in any of: ...(lists my GOPATH)。看起来我还需要克隆github.com/drewlanenga/govector,是吗?是否有自动获取所有包依赖项的方法?
相关分类