diff options
Diffstat (limited to 'install.md')
-rw-r--r-- | install.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install.md b/install.md index 7fc6475cd..a6b912a87 100644 --- a/install.md +++ b/install.md @@ -110,11 +110,13 @@ GOPATH └── libpod ``` -First, configure a `GOPATH` (if you are using go1.8 or later, this defaults to `~/go`). +First, configure a `GOPATH` (if you are using go1.8 or later, this defaults to `~/go`) +and then add $GOPATH/bin to your $PATH environment variable. ```bash export GOPATH=~/go mkdir -p $GOPATH +export PATH=$PATH:$GOPATH/bin ``` Next, clone the source code using: |