What is the best practice for installing packages (with go get... ) in a local directory?
Example. I would like to try the Revel web framework, but I don't want to clutter the go installation on /usr/local/go .
Normally I would say sudo go get github.com/robfig/revel as written on the home page, but this will install it under /usr/local/go/src/pkg/...
Is there an easy way to say (for example) go get --local ... and have the package in the current (auxiliary) directory?
go install package local
topskip
source share