# Install Osmosisd

# Minimum Requirements

The minimum recommended specs for running osmosisd is as follows:

  • 8-core (4 physical core), x86_64 architecture processor
  • 32 GB RAM (or equivalent swap file set up)
  • 1 TB of storage space

# Update System

This guide will explain how to install the osmosisd binary onto your system.

On Ubuntu start by updating your system:

sudo apt update
1
sudo apt upgrade --yes
1

# Install Build Requirements

Install make and gcc.

sudo apt install git build-essential ufw curl jq snapd --yes
1

Install go:

wget -q -O - https://git.io/vQhTU | bash -s -- --version 1.17.2
1

After installed, open new terminal to properly load go

# Install Osmosis Binary

Clone the osmosis repo, checkout and install v6.2.0:

cd $HOME
git clone https://github.com/osmosis-labs/osmosis
cd osmosis
git checkout v6.2.0
make install
1
2
3
4
5

TIP

If you came from the testnet node instruction, click here to return

If you came from the mainnet node instruction, click here to return