Skip to content

Instantly share code, notes, and snippets.

@AlwaysBCoding
Created April 12, 2017 13:02
Show Gist options
  • Save AlwaysBCoding/d3513fc0dc7a9aa548a53189b9739fb1 to your computer and use it in GitHub Desktop.
Save AlwaysBCoding/d3513fc0dc7a9aa548a53189b9739fb1 to your computer and use it in GitHub Desktop.
Ethereum Ðapp Development - Video 21 | Installing Geth
// Running on Ubuntu 16.04 (64-bit)
// Do this first
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
// Install Geth
sudo apt-get install ethereum
// Install Solc
sudo apt-get install solc
// Install NodeJS
sudo apt-get install python-software-properties
curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
sudo apt-get install nodejs
// Install tmux
sudo apt-get install tmux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment