Browse Source

Added specific installation instructions for Mac (#2011)

Made it more clear for Mac users using Go version 1.8 and greater.
Jim Filippou 6 years ago
parent
commit
b80d675864
1 changed files with 6 additions and 0 deletions
  1. 6 0
      README.md

+ 6 - 0
README.md

@@ -101,6 +101,12 @@ $ go get github.com/kardianos/govendor
 $ mkdir -p $GOPATH/src/github.com/myusername/project && cd "$_"
 $ mkdir -p $GOPATH/src/github.com/myusername/project && cd "$_"
 ```
 ```
 
 
+If you are on a Mac and you're installing Go 1.8 (released: Feb 2017) or later, GOPATH is automatically determined by the Go toolchain for you. It defaults to $HOME/go on macOS so you can create your project like this
+
+```sh
+$ mkdir -p $HOME/go/src/github.com/myusername/project && cd "$_"
+```
+
 3. Vendor init your project and add gin
 3. Vendor init your project and add gin
 
 
 ```sh
 ```sh