我是一个初学者,试图下载并安装goa-cellar项目。但是我无法使用ssh或https github链接安装
1. go get git@github.com:goadesign/ goa-cellar.git
package git@github.com:goadesign/goa-cellar.git: unrecognized import path "git@github.com:goadesign/goa-cellar.git" (https fetch: Get https://git@github.com:goadesign/goa-cellar.git?go-get=1: dial tcp: unknown port tcp/goadesign)
2. go get https://github.com/goadesign/goa-cellar.git
package https:/github.com/goadesign/goa-cellar.git: "https://" not allowed in import path
请帮我解决这个问题?
答案 0 :(得分:13)
安装软件包时不要包含协议(http / https)。
go get github.com/goadesign/goa-cellar
请注意,您需要设置GOPATH
环境变量。如果你不确定怎么做,这里有一篇文章:https://golang.org/doc/code.html#GOPATH。