Skip to content

3. Installation

piotr-iohk edited this page Dec 4, 2024 · 2 revisions

You can install MinaMesh using several options.

Option 1: Build from source

Ensure you have the Rust toolchain installed. If you do not, see installation instructions here.

# Clone and Build MinaMesh
git clone https://github.com/MinaFoundation/MinaMesh.git
cd MinaMesh
cargo build --release

# Confirm installation
target/release/mina-mesh --help

Option 2: Install via Rust Crate

Ensure you have the Rust toolchain installed. If you do not, see installation instructions here.

# Install
cargo install [email protected]

# Confirm installation
mina-mesh --help

🗒️ Note: the version specifier is necessary when installing from the beta release channel. Replace X with the latest version that can be found on mina_mesh's crates.io page.

Option 3: Install via Docker

TBD