Skip to content

Instantly share code, notes, and snippets.

@asverty
Last active December 17, 2021 11:29
Show Gist options
  • Save asverty/31c98def28c2eab80fbba7db085cdbc1 to your computer and use it in GitHub Desktop.
Save asverty/31c98def28c2eab80fbba7db085cdbc1 to your computer and use it in GitHub Desktop.
#Update and upgrade your Linux in one cmd
sudo apt-get update && sudo apt-get upgrade -y
#Install make and gcc in one cmd
sudo apt install make && sudo apt install gcc
#Install Go 1.17.1
cd
wget https://golang.org/dl/go1.17.1.linux-amd64.tar.gz
sudo rm -rv /usr/local/go
sudo tar -C /usr/local -xzf go1.17.1.linux-amd64.tar.gz
rm -v go1.17.1.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
#Check Go version
go version
#Output
go version go1.17.1 linux/amd64
#Install Evmos
git clone https://github.com/tharsis/evmos.git
cd evmos
make install
#Check Evmos version
evmosd version
#When I migrated actual version was 0.1.2, and from 24th of October 2021 it's 0.1.3
0.1.3
#From 11th of December 2021
0.4.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment