0

我在销售我的 go-project 时遇到问题。尝试使用 glide 和 go-dep - 遇到同样的问题。

$ go get -u go.opencensus.io给出以下错误:

package go.opencensus.io/opencensus-go: unrecognized import path "go.opencensus.io/opencensus-go" (https fetch: Get https://go.opencensus.io/opencensus-go?go-get=1: dial tcp <some-ip>: i/o timeout)

这个包的 Github 链接 - https://github.com/census-instrumentation/opencensus-go

4

1 回答 1

2

尝试将代理设置为 shell

export http_proxy=http://104.248.231.49:8080/
export https_proxy=http://104.248.231.49:8080/

然后它起作用了。

于 2019-02-13T05:47:13.007 回答