Added GOPATH/bin to PATH install.md

Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>

Closes: #1408
Approved by: rhatdan
This commit is contained in:
TomSweeneyRedHat 2018-09-05 10:49:19 -04:00 committed by Atomic Bot
parent 1ee466eee4
commit 9ae6d773b4
1 changed files with 3 additions and 1 deletions

View File

@ -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: