mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
1.3 KiB
1.3 KiB
Binaries
Precompiled binaries are available from the GitHub releases page.
Binaries are supplied for 5 platforms:
- Linux x86_64: AMD and Intel 64-bit processors (most desktops, laptops, and servers)
- Linux ARM64: 64-bit arm processors
- macOS x86_64: macOS with Intel chips
- macOS ARM64: macOS with Apple Silicon
- Windows x86_64: AMD and Intel 64-bit processors
Each binary is contained in a tarball.
As an example, you could install the Linux x86_64 version like so:
-
Go to the Releases page and select the latest release.
-
Download the
reth-${VERSION}-x86_64-unknown-linux-gnu.tar.gztarball.For example, to obtain the binary file for v0.0.1-alpha, you can run the following commands in a Linux terminal:
cd ~ curl -LO https://github.com/paradigmxyz/reth/releases/download/v0.0.1-alpha/reth-v0.0.1-alpha-x86_64-unknown-linux-gnu.tar.gz tar -xvf reth-v0.0.1-alpha-x86_64-unknown-linux-gnu.tar.gz -
Test the binary with
./reth --version(it should print the version). -
(Optional) Move the
rethbinary to a location in yourPATH, so therethcommand can be called from anywhere.
For most Linux distros, you can move the binary to/usr/local/bin:sudo cp ./reth /usr/local/bin.