安装时显示下列问题请大神帮忙看一看 怎样解决
```bash
G:\GO\go\src\project>go get github.com/labstack/echo/...
# cd C:\Users\Administrator\go\src\github.com\labstack\gommon; git pull --ff-only
fatal: No remote repository specified. Please, specify either a URL or a
remote name from which new revisions should be fetched.
package github.com/labstack/gommon/color: exit status 1
package github.com/labstack/gommon/log: cannot find package "github.com/labstack/gommon/log" in any of:
G:\GO\go\src\github.com\labstack\gommon\log (from $GOROOT)
C:\Users\Administrator\go\src\github.com\labstack\gommon\log (from $GOPATH)
package golang.org/x/crypto/acme/autocert: unrecognized import path "golang.org/x/crypto/acme/autocert" (https fetch: Get https://golang.org/x/crypto/acme/autocert?go-get=1: net/http: TLS handshake timeout)
package github.com/labstack/gommon/bytes: cannot find package "github.com/labstack/gommon/bytes" in any of:
G:\GO\go\src\github.com\labstack\gommon\bytes (from $GOROOT)
C:\Users\Administrator\go\src\github.com\labstack\gommon\bytes (from $GOPATH)
package github.com/labstack/gommon/random: cannot find package "github.com/labstack/gommon/random" in any of:
G:\GO\go\src\github.com\labstack\gommon\random (from $GOROOT)
C:\Users\Administrator\go\src\github.com\labstack\gommon\random (from $GOPATH)
```
我试了下,没有问题。感觉你的 GOPATH 包含了多个路径(当然,应该跟这个没啥关系)。
可以这样试试:`go get -v -u github.com/labstack/echo`,看输出过程!
#1
更多评论
```
G:\GO\go\src\project>go get -v -u github.com/labstack/echo
github.com/labstack/echo (download)
github.com/labstack/gommon (download)
# cd C:\Users\Administrator\go\src\github.com\labstack\gommon; git pull --ff-only
fatal: No remote repository specified. Please, specify either a URL or a
remote name from which new revisions should be fetched.
package github.com/labstack/gommon/color: exit status 1
package github.com/labstack/gommon/log: cannot find package "github.com/labstack/gommon/log" in any of:
G:\GO\go\src\github.com\labstack\gommon\log (from $GOROOT)
C:\Users\Administrator\go\src\github.com\labstack\gommon\log (from $GOPATH)
Fetching https://golang.org/x/crypto/acme/autocert?go-get=1
https fetch failed: Get https://golang.org/x/crypto/acme/autocert?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
package golang.org/x/crypto/acme/autocert: unrecognized import path "golang.org/x/crypto/acme/autocert" (https fetch: Get https://golang.org/x/crypto/acme/autocert?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a peri
od of time, or established connection failed because connected host has failed to respond.)
```
这。。。。。
#3