执行 `go get gopkg.in/gomail.v1` 时无法获取 `gomail` 模块。

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

go get gopkg.in/gomail.v1 cannot get gomail module

问题

我正在尝试通过gopkg.in/gomail.v1获取gomail,但我的连接一直处于挂起状态。换句话说,在我的控制台上,当我输入以下命令时:

[developer@machine gocode]$ go get gopkg.in/gomail.v1

我什么都没有得到。
然而,在/gocode/src/gopkg.in目录中,我看到一个名为gomail.v1的目录,里面没有任何内容。

英文:

I am trying to get gomail via gopkg.in/gomail.v1 but my connection just stays hanging. In other words, on my console, when I type:

[developer@machine gocode]$ go get gopkg.in/gomail.v1

I get nothing
However in the /gocode/src/gopkg.in directory, I see a directory named gomail.v1 with nothing inside..

答案1

得分: 3

希望这能帮助其他人。我花了将近3个小时才弄清楚这个问题。显然,

[developer@machine gocode]$ go get gopkg.in/wantedpackage

在 git 版本小于 1.7.9.5 的情况下无法工作。解决方法是升级你的 git 版本。我将 git 版本升级到了 1.7.12.4,然后它就可以工作了。

英文:

I hope this will help others. I spent almost 3 hours figuring this out. Apparently,

[developer@machine gocode]$ go get gopkg.in/wantedpackage

will not not work with git version < 1.7.9.5.
The trick is to upgrade your git version. I upgraded my git version to 1.7.12.4 and it works.

答案2

得分: 0

go get在下载和安装库时不会显示任何内容。只要你连接到互联网,就请耐心等待。如果连接服务器时出现问题,它会显示错误。

根据你的平台:检查是否已安装githg

英文:

go get does not not display anything while downloading and installing libraries. So as long as you are connected to the internet just wait. If there are troubles connecting to the server it will display an error.

Depending on your platform: Check if you have installed git and hg.

huangapple
  • 本文由 发表于 2014年11月10日 03:12:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/26832168.html
匿名

发表评论

匿名网友

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

确定