Created
April 12, 2017 13:02
-
-
Save AlwaysBCoding/d3513fc0dc7a9aa548a53189b9739fb1 to your computer and use it in GitHub Desktop.
Ethereum Ðapp Development - Video 21 | Installing Geth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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