From 326c95ac4c08f7e9fc531c5b30d05a51ae9d949a Mon Sep 17 00:00:00 2001 From: Trigger Date: Fri, 24 Jul 2020 23:04:57 +0200 Subject: [PATCH] Node client - Installing go in 20.04 is easier --- node_client.asciidoc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/node_client.asciidoc b/node_client.asciidoc index 5b92197..c4637b8 100644 --- a/node_client.asciidoc +++ b/node_client.asciidoc @@ -681,11 +681,9 @@ We will follow the installation instructions found on the LND project documentat https://github.com/lightningnetwork/lnd/blob/master/docs/INSTALL.md -First, we will install the golang package and associated libraries. We need, _at minimum_ Go version 1.13 or later. The official Go language packages are distributed as binaries from https://golang.org/dl. For convenience they are also packaged as debian packages distributed through the +apt+ command. You can follow the instructions on https://golang.org/dl or use the apt commands below on a Debian/Ubuntu Linux system: +First, we will install the golang package and associated libraries. We need, _at minimum_ Go version 1.13 or later. The official Go language packages are distributed as binaries from https://golang.org/dl. For convenience they are also packaged as debian packages distributed through the +apt+ command. You can follow the instructions on https://golang.org/dl or use the apt commands below on a Debian/Ubuntu Linux system as described on https://github.com/golang/go/wiki/Ubuntu: ---- -$ sudo add-apt-repository ppa:longsleep/golang-backports -$ sudo apt update $ sudo apt install golang-go ----