英文:
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 "github.com/hoisie/web.go"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论