英文:
Go get doesn't work, I have git
问题
根据开始页面的指示,我想安装Revel,但它显示找不到hg。我已经安装了Git并且对其很熟悉。我已经双重检查了%PATH%,其中包括Git/cmd和Git/bin。
英文:
Following go getting started page, want to install revel, it says it can't find hg, I have git and I am comfortable with it. Double checked %PATH%, it has Git/cmd and Git/bin
答案1
得分: 10
> package revel
>
> import "github.com/revel/revel"
>
> revel导入的包
go get
命令会安装一个包以及任何缺失的导入依赖项。revel包从一个Mercurial存储库导入"code.google.com/p/go.net/websocket"。
安装Mercurial (hg): Mercurial下载.
英文:
> package revel
>
> import "github.com/revel/revel"
>
> Packages imported by revel
The go get
command installs a package and any missing import dependencies. The revel package imports "code.google.com/p/go.net/websocket" from a Mercurial repository.
Install Mercurial (hg): Mercurial Download.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论