英文:
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
在下载和安装库时不会显示任何内容。只要你连接到互联网,就请耐心等待。如果连接服务器时出现问题,它会显示错误。
根据你的平台:检查是否已安装git
和hg
。
英文:
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
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论