Installation

mtrack can be installed using Rust’s package manager, Cargo.

Prerequisites

  • Rust and Cargo installed on your system
  • Linux operating system (mtrack is designed for Linux)
  • Class compliant audio interface (for audio output)
  • Optional: MIDI interface for control

Installing via Cargo

The recommended way to install mtrack is through Cargo:

1
cargo install mtrack --locked

This will download, compile, and install mtrack to ~/.cargo/bin/mtrack.

Installing System-Wide

If you want to use mtrack system-wide (recommended for production use), copy it to /usr/local/bin:

1
sudo cp ~/.cargo/bin/mtrack /usr/local/bin/mtrack

Verifying Installation

After installation, verify that mtrack is working:

1
mtrack --version

You should see the version number printed.

Next Steps