我对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
有什么想法吗?
答案 0 :(得分:0)
在Go C:\Go
的Windows设置中,安装了Go。
将GOPATH设置为另一个文件夹,然后使用%GOPATH%\bin\cf-console
确保go get github.com/danhigham/cf-console
首先发挥作用:
go install
。在Windows上,README
中提到的实际命令应为:
cf install-plugin %GOPATH%\bin\cf-console