英文:
Install Go CLI application without having Go installed
问题
如果我已经在我的计算机上安装了Go,我可以使用这个GitHub仓库轻松安装一个CLI应用程序。我需要在没有安装Go的机器上安装一个CLI应用程序(比如CloudFoundry CLI)-我该如何做呢?
英文:
If I already have Go installed on my computer, I can easily install a CLI application using this github repository. I need to install a CLi application on a machine that does not have Go installed (like the CloudFoundry CLI) - how can I do that?
答案1
得分: 1
Go编译成一个可执行文件,最终用户不需要安装Go。
英文:
Go compiles to one executable, the end user does not need go installed.
答案2
得分: 0
你可以尝试使用一个新发布的工具,比如goget.sh。
英文:
You could try a newly released tool like goget.sh
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论