nucypher/deploy/geth/install_geth_ubuntu.sh

11 lines
230 B
Bash
Executable File

#!/usr/bin/env bash
# Install Geth
sudo apt-get install software-properties-common -y
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update -y
sudo apt-get install ethereum -y
# Verify Installation
geth --version