web.go安装错误

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

web.go install error

问题

我正在尝试使用goinstall命令安装web.go,路径出现了错误。

goinstall: github.com/hoisie/web.go: git: 没有这个文件或目录

确定goinstall是可以正常工作的,因为当我只输入goinstall时,会显示选项列表。有任何关于我做错了什么的想法吗?

Metropolis

英文:

I am trying to install <a href="http://github.com/hoisie/web.go">web.go</a> using goinstall github.com/hoisie/web.go, and I keep getting an error about the path.

goinstall: github.com/hoisie/web.go: git: no such file or directory

goinstall is working for sure because when I type in just goinstall I get the options list for it. Any ideas on what I am doing wrong?

Metropolis

答案1

得分: 3

您需要安装git(http://git-scm.com)才能从git存储库中获取软件包。

祝好,
Fabian

英文:

You need to install git (http://git-scm.com) in order to fetch packages from a git repository.

Cheers,
Fabian

答案2

得分: 1

如果您通过 goinstall 安装 web.go,您需要执行以下操作:

import "github.com/hoisie/web.go"
英文:

If you install web.go through goinstall, you need to do:

import &quot;github.com/hoisie/web.go&quot;

huangapple
  • 本文由 发表于 2010年5月23日 23:35:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/2892352.html
匿名

发表评论

匿名网友

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

确定