System Requirements

Before starting, make sure your server meets the following minimum requirements:

Step 1: Update System Packages

Log in to your server and run the following commands to update your system packages:

sudo apt update && sudo apt upgrade -y

Step 2: Install Dependencies

Install the required dependencies:

sudo apt install curl wget git build-essential libssl-dev pkg-config libclang-dev -y

Step 3: Install Rust

Install Rust programming language:

curl --proto '=https' --tlsv1.2 -sSf <https://sh.rustup.rs> | sh
source $HOME/.cargo/env

Verify the installation:

rustc --version

Step 4: Install Substrate

Clone the Substrate repository and install it: