From 01afe1840f7be800dd249657c0246170773f3aa7 Mon Sep 17 00:00:00 2001 From: Kevin Davis Date: Tue, 21 Aug 2018 16:39:57 -0400 Subject: [PATCH 1/3] Added setup steps for clean GO install --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 75d19949..bcebd23a 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,22 @@ Try it out - run a full node to sync to the testnet, or set up as a validator. Requirements: go installed and set up (version 1.10+). + 0. If installing from a new Ubuntu server (16.04 or 18.04), here's how to setup go: + sudo apt update + sudo apt upgrade -y + sudo apt install git gcc make wget -y + wget https://dl.google.com/go/go1.10.3.linux-amd64.tar.gz + sudo tar -xvf go1.10.3.linux-amd64.tar.gz + sudo mv go /usr/local + + cat >> ~/.profile < Date: Tue, 21 Aug 2018 17:44:51 -0400 Subject: [PATCH 2/3] Added setup steps for clean GO install --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bcebd23a..0f261792 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Try it out - run a full node to sync to the testnet, or set up as a validator. Requirements: go installed and set up (version 1.10+). 0. If installing from a new Ubuntu server (16.04 or 18.04), here's how to setup go: + sudo apt update sudo apt upgrade -y sudo apt install git gcc make wget -y From 2b03b2eea1a4f66e6687c4b6762d52bc2c0e7454 Mon Sep 17 00:00:00 2001 From: Kevin Davis Date: Wed, 29 Aug 2018 10:05:25 -0400 Subject: [PATCH 3/3] typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f261792..b876c974 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Requirements: go installed and set up (version 1.10+). export PATH=\$GOPATH/bin:\$GOROOT/bin:\$PATH EOF - soruce ~/.profile + source ~/.profile 1. Get the code.