无法使用go get安装Revel

时间:2014-09-30 12:06:37

标签: go

我的go env

GOARCH="amd64"
GOBIN=""
GOCHAR="6"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/xamenrax/code/golang"
GORACE=""
GOROOT="/usr/local/Cellar/go/1.3.2/libexec"
GOTOOLDIR="/usr/local/Cellar/go/1.3.2/libexec/pkg/tool/darwin_amd64"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fno-common"
CXX="clang++"
CGO_ENABLED="1"

但是在我做go get github.com/robfig/revel的地方没有任何输出,这个命令只是默默无闻。

1 个答案:

答案 0 :(得分:2)

它什么都不做,但检查$GOPATH/src/github.com/robfig/revel文件夹的内容。

如果该文件夹存在,go get可能会下载,编译和安装您的项目。


解决方法是手动执行:

  • robfig
  • 中创建$GOPATH/src/github.com文件夹
  • robfig文件夹中,尝试:

    git clone https://github.com/robfig/revel
    
  • 然后在revel文件夹中,尝试go build,然后go install

作为commented below

  

go build命令应该从$GOPATH/src/github.com/robfig/revel/revel

执行