Skip to content

Installation

Precompiled releases are not currently available, so the project must be built manually.

1. Install Rust

naus is written in Rust, so the Rust toolchain is required. The easiest way to install it is via rustup. Make sure the stable toolchain is set:

rustup default stable

2. Clone the repository

Run the following commands:

git clone https://codeberg.org/naus/naus
cd naus

3. Build the project

Build the project in release mode for best performance:

cargo build --release

After a successful build, the binary will be located in the following path relative to the project directory:

  • Linux/macOS: ./target/release/naus
  • Windows: .\target\release\naus.exe