Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 471 Bytes

geth.md

File metadata and controls

16 lines (12 loc) · 471 Bytes

Geth

Installation

Install both geth and `bootnode.

git clone https://github.com/ethereum/go-ethereum.git
cd go-ethereum
git checkout v1.14.11 # The latest tested version
make all
sudo cp build/bin/geth /usr/local/bin/geth # Make it globally accessible
sudo cp build/bin/bootnode /usr/local/bin/bootnode # Make it globally accessible

Or consult the official page for the installation.