From 9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d Mon Sep 17 00:00:00 2001 From: TomSweeneyRedHat Date: Wed, 5 Sep 2018 10:49:19 -0400 Subject: Added GOPATH/bin to PATH install.md Signed-off-by: TomSweeneyRedHat Closes: #1408 Approved by: rhatdan --- install.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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: -- cgit v1.2.3-54-g00ecf