From 07e217fbd45714cd897f0c3c538ef4b79dd89836 Mon Sep 17 00:00:00 2001 From: TeoV Date: Tue, 25 Aug 2020 12:10:38 +0300 Subject: [PATCH] Update install documentation with go version 1.15 --- docs/installation.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index b68a823d6..ca9616c7d 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -123,14 +123,14 @@ Install GO Lang First we have to setup the GO Lang to our OS. Feel free to download the latest GO binary release from https://golang.org/dl/ -In this Tutorial we are going to install Go 1.14.2 +In this Tutorial we are going to install Go 1.15 :: sudo rm -rf /usr/local/go cd /tmp - wget https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz - sudo tar -xvf go1.14.2.linux-amd64.tar.gz -C /usr/local/ + wget https://golang.org/dl/go1.15.linux-amd64.tar.gz + sudo tar -xvf go1.15.linux-amd64.tar.gz -C /usr/local/ export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin