我用go1.3
安装了gvm
,下一步是什么?我试图建立Revel
,但我有错误:
can't load package: package github.com/robfig/revel/cmd: cannot find package "github.com/robfig/revel/cmd" in any of:
/home/cnaize/.gvm/gos/go1.3/src/pkg/github.com/robfig/revel/cmd (from $GOROOT)
($GOPATH not set)
如何解决这个问题?
需要使用pkgset
启用gvm
包
gvm install go1.2.2
gvm use go1.2.2
gvm pkgset create revel-test
gvm pkgset use revel-test
go get github.com/reve/revel/cmd/revel
GVM install #version run:
gvm use #version
您必须通过运行如下命令来设置GOPATH
环境变量
export GOPATH=/path/to/your/go/workspace
然后使用命令
获取包go get github.com/robfig/revel/cmd
注意,如果你在.bashrc
中设置了GOPATH
,你必须在第一次设置source ~/.bashrc
才能使它生效(或者重新打开你的终端)。
我建议你也读一些关于go的文档或教程,而不是每次做某事时都创建一个新问题。在go标签描述中有一个资源列表。