summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Wiley <brandon@blanu.net>2016-11-29 11:37:16 -0600
committerBrandon Wiley <brandon@blanu.net>2016-11-29 11:37:16 -0600
commitb134a3ce0f34b8aedca6d7a46074039b29c13e8b (patch)
tree0c92f19599925d77a571d1c86b78b25f10c7d97f
parent327064b4ba443fefdb86154269399fd3744a7231 (diff)
Added information about the compatible Go version
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1824068..27f00ae 100644
--- a/README.md
+++ b/README.md
@@ -63,7 +63,7 @@ The dispatcher currently supports the following transports:
#### Installation
The dispatcher is written in the Go programming language. To compile it you need
-to install Go:
+to install Go 1.5.1 or higher:
<https://golang.org/doc/install>
@@ -71,8 +71,18 @@ If you just installed Go for the first time, you will need to create a directory
to keep all of your Go source code:
mkdir ~/go
- export GOPATH=~/go
+
+If you already have Go installed, make sure it is a compatible version:
+
+ go version
+
+The version should be 1.5.1 or higher.
+
+If you have a compatible Go installed, you should go to the directory where you
+keep all of your Go source code and set your GOPATH:
+
cd ~/go
+ export GOPATH=~/go
Software written in Go is installed using the `go get` command: