From dc10d7f68e52c2d595b848d2fc3e5122a3692400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Fri, 30 Jun 2017 09:34:41 +0200 Subject: [PATCH] Add slightly better GitHub install description See https://github.com/gohugoio/hugo/issues/3657 --- content/overview/installing.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/overview/installing.md b/content/overview/installing.md index 895fae2af..011711db3 100644 --- a/content/overview/installing.md +++ b/content/overview/installing.md @@ -123,14 +123,16 @@ Therefore, a simple `go get` is not supported since `go get` is not vendor-aware You **must use govendor** to fetch Hugo's dependencies. ### Fetch from GitHub + + The commands below assume that you have [Go](https://golang.org/dl/) installed with your `$GOPATH` is set. go get github.com/kardianos/govendor govendor get github.com/gohugoio/hugo `govendor get` will fetch Hugo and all its dependent libraries to -`$HOME/go/src/github.com/gohugoio/hugo`, and compile everything into a final `hugo` +`$GOPATH/src/github.com/gohugoio/hugo`, and compile everything into a final `hugo` (or `hugo.exe`) executable, which you will find sitting inside -`$HOME/go/bin/`, all ready to go! +`$GOPATH/go/bin/`, all ready to go! *Windows users: where you see the `$HOME` environment variable above, replace it with `%USERPROFILE%`.*