If you get a timeout when trying to install go dependencies, the error may look something like this:

1
2
3
$ go get github.com/aws/aws-sdk-go/aws

go: module github.com/aws/aws-sdk-go/aws: Get "https://proxy.golang.org/github.com/aws/aws-sdk-go/aws/@v/list": dial tcp: lookup proxy.golang.org: i/o timeout

How to Solve the Timeout Issue when installing Go Deps

1
export GOPROXY=direct

Then re-run your go get command.