安装cf-console会返回错误

时间:2015-07-09 07:12:32

标签: github go

我对Git很新,我需要安装以下内容,我想知道该怎么做?

https://github.com/danhigham/cf-console

我已经安装了云代工厂,所以在CLI中我可以放置CF命令及其工作...... 我还安装了Go,当我在命令行中添加以下内容时

cf install-plugin $C:/Go/bin/cf-console

我收到以下错误:

Installing plugin $C:/Go/bin/cf-console...
FAILED
exec: "$C:/Go/bin/cf-console": file does not exist

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

在Go C:\Go的Windows设置中,安装了Go。

将GOPATH设置为另一个文件夹,然后使用%GOPATH%\bin\cf-console 确保go get github.com/danhigham/cf-console首先发挥作用:

  • 你应该看到%GOPATH%\ src \ github.com \ danhigham \ cf-console`
  • 您应该可以在该文件夹中执行go install
  • 将生成您需要的可执行文件

在Windows上,README中提到的实际命令应为:

cf install-plugin %GOPATH%\bin\cf-console