Skip to content

Instantly share code, notes, and snippets.

@code-machina
Last active December 9, 2018 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code-machina/4b640a9a469ac3839d9f028942268abb to your computer and use it in GitHub Desktop.
Save code-machina/4b640a9a469ac3839d9f028942268abb to your computer and use it in GitHub Desktop.
Install Geth in Ubuntu 16.04
# Install golang
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt-get update
sudo apt-get install golang-go
# check golang version
go version
# Install Ethereum
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
sudo apt-get install solc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment