Go get不起作用,我有git

huangapple go评论75阅读模式
英文:

Go get doesn't work, I have git

问题

根据开始页面的指示,我想安装Revel,但它显示找不到hg。我已经安装了Git并且对其很熟悉。我已经双重检查了%PATH%,其中包括Git/cmd和Git/bin。

Go get不起作用,我有git

英文:

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

Go get不起作用,我有git

答案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.

huangapple
  • 本文由 发表于 2014年10月19日 23:29:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/26452077.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定