I executed 'go get -u github.com/gocolly/colly/...', but it always notice that:
https fetch: Get https://google.golang.org/appengine/urlfetch?go-get=1: dial tcp 216.239.37.1:443: i/o timeout
There's two methods to resolve the problem:
export GO111MODULE=on
export GOPROXY=https://goproxy.io
go get github.com/gocolly/colly
or if you are using Shadowsocks
export http_proxy=http://0.0.0.0:1087;export https_proxy=http://0.0.0.0:1087;
go get github.com/gocolly/colly
Thank you all above!馃憣 I've get the package with your method.
Most helpful comment
or if you are using
Shadowsocks