diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2018-09-05 10:49:19 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-09-05 23:38:19 +0000 |
commit | 9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d (patch) | |
tree | a291ba95b6c914b10ae34ae0369a70b92c2f6a0d | |
parent | 1ee466eee4f224cfa7e57b7556b5119b2f02f653 (diff) | |
download | podman-9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d.tar.gz podman-9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d.tar.bz2 podman-9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d.zip |
Added GOPATH/bin to PATH install.md
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Closes: #1408
Approved by: rhatdan
-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: |