Install Erigon with Pre-built Binaries
You can download and install Erigon v3.0.2 (or whatever the latest is) directly from our GitHub releases page.
1. Pick your platform & download
Go at the Erigon releases page and select the latest version (or whichever you'd like).

then download the appropriate binary for your system. as shown above.
- For Linux:
erigon_3.x.x_amd64.deb
for 64-bit Intel/AMD processorserigon_3.x.x_arm64.deb
for 64-bit ARM processorserigon_v3.x.x_linux_amd64.tar.gz
for 64-bit Intel/AMD processorserigon_v3.x.x_linux_arm64.tar.gz
for 64-bit ARM processors
- For MacOS:
erigon_3.x.x_darwin_amd64.tar.gz
for 64-bit Intel/AMD processorserigon_3.x.x_darwin_arm64.tar.gz
for 64-bit ARM processors
Checksums
To verify the integrity of the downloaded file, you can use the checksums provided in the erigon_v3.x.x_checksums.txt
file. This file contains SHA256 checksums for all Erigon binaries.
BASE="https://github.com/erigontech/erigon/releases/download/v3.x.x"
wget $BASE/erigon_v3.x.x_checksums.txt
# then one of:
wget $BASE/erigon_3.x.x_amd64.deb
# or
wget $BASE/erigon_3.x.x_arm64.deb
# or
wget $BASE/erigon_v3.x.x_linux_amd64.tar.gz
# or
wget $BASE/erigon_v3.x.x_linux_arm64.tar.gz