From 236d53785d1b7dae39207edb6256a96f5b75e858 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 19 Feb 2018 17:44:01 -0800 Subject: [PATCH] docs: update docs to recommend golang 1.10 --- docs/INSTALL.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 082dbe626..782868a5a 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -7,14 +7,16 @@ * **Go:** `lnd` is written in Go. To install, run one of the following commands: - **Note**: The minimum version of Go supported is Go 1.8. + **Note**: The minimum version of Go supported is Go 1.8. We recommend that + users use the latest version of Go, which at the time of writing is + [`1.10`](https://blog.golang.org/go1.10). On Linux: ``` - sudo apt-get install golang-1.8-go + sudo apt-get install golang-1.10-go ``` - > Note that golang-1.8-go puts binaries in /usr/lib/go-1.8/bin. If you want them on your PATH, you need to make that change yourself. + > Note that golang-1.10-go puts binaries in /usr/lib/go-1.8/bin. If you want them on your PATH, you need to make that change yourself. On Mac OS X ```