Prerequisites
Before you begin, ensure you have the following:
Update and upgrade your system packages:
sudo apt-get update && sudo apt-get upgrade -y
Install essential build tools:
sudo apt-get install -y build-essential git
Install Go (if not already installed):
wget <https://golang.org/dl/go1.18.linux-amd64.tar.gz>
sudo tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
Verify Go installation:
go version
Clone the repository:
git clone <https://github.com/dymensionxyz/dymension>
cd dymension
Checkout the latest stable release:
git checkout tags/v0.1.0
Compile the Dymension binaries:
make build
Move the binary to a directory in your PATH:
sudo mv build/dymd /usr/local/bin/
Verify the installation:
dymd version
Initialize your node:
dymd init <your_node_name> --chain-id <chain_id>