如何在Go中安装需求? “找不到包”
我是新来的,我试图用最less的文档build立一个Go项目: https : //github.com/alphagov/metadata-api
我克隆它,但是当我尝试go build
我得到以下警告:
main.go:8:2: cannot find package "github.com/Sirupsen/logrus" in any of: /usr/local/Cellar/go/1.3.3/libexec/src/pkg/github.com/Sirupsen/logrus (from $GOROOT) /Users/me/go/src/github.com/Sirupsen/logrus (from $GOPATH) main.go:14:2: cannot find package "github.com/alphagov/metadata-api/content_api" in any of: /usr/local/Cellar/go/1.3.3/libexec/src/pkg/github.com/alphagov/metadata-api/content_api (from $GOROOT) /Users/me/go/src/github.com/alphagov/metadata-api/content_api (from $GOPATH)
我猜这是因为我没有安装相应的需求?
我的GOPATH
设置为:
metadata-api$ echo $GOPATH /Users/me/go
Go的可执行文件在
metadata-ape$ echo $PATH ....:/Users/me/go/bin
我需要做些什么来帮助去find这些软件包?
你应该先安装软件包:
尝试
$ go get github.com/Sirupsen/logrus
并检查你的$GOPATH
目录
这个项目使用gom
作为包pipe理器,
确保你已经安装了gom
或者尝试这个命令
$ gom install
我认为你的$GOPATH
和$PATH
设置是不正确的, $GOPATH
环境variables指定你的工作区的位置,这些是我的path设置:
export GOROOT=$HOME/bin/go export GOBIN=$GOROOT/bin export GOPATH=$HOME/golang export PATH=$PATH:$GOBIN