Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

avoiding global packages

FND edited this page Oct 9, 2014 · 3 revisions

Go expects GOPATH to point to a system-wide directory.

This can be avoided like so:

$ mkdir -p lib/src
$ ln -s ../../naveed lib/src/naveed

$ cat activate
export GOPATH="`pwd`/lib"

$ . activate
Clone this wiki locally