Download Muti Metroo
Current Version: v1.0.17
Download the latest Muti Metroo binary for your platform. All binaries are self-contained and require no additional dependencies.
- macOS
- Linux
- Windows
Apple Silicon (M-series)
Intel
Installation
Using the installer (recommended):
- Download the
.pkgfile for your architecture - Double-click to run the installer
- Follow the installation prompts
- The binary will be installed to
/usr/local/bin/muti-metroo
Using the standalone binary:
# Download and install (Apple Silicon)
curl -L -o muti-metroo https://mutimetroo.com/downloads/latest/muti-metroo-darwin-arm64
chmod +x muti-metroo
sudo mv muti-metroo /usr/local/bin/
# Verify installation
muti-metroo --version
x86_64 (amd64)
ARM64 (aarch64)
Installation
# Download for your architecture (example: amd64)
curl -L -o muti-metroo https://mutimetroo.com/downloads/latest/muti-metroo-linux-amd64
# Make executable and install
chmod +x muti-metroo
sudo mv muti-metroo /usr/local/bin/
# Verify installation
muti-metroo --version
Verify Your Download
Verify your download with SHA256 checksums:
- Linux / macOS
- Windows
# Download checksums
curl -L -o checksums.txt https://mutimetroo.com/downloads/latest/checksums.txt
# Verify (example for linux-amd64)
sha256sum -c checksums.txt --ignore-missing
# Get the expected hash from checksums.txt
$expected = (Get-Content checksums.txt | Select-String "muti-metroo-windows-amd64.exe").ToString().Split()[0]
# Calculate actual hash
$actual = (Get-FileHash muti-metroo-windows-amd64.exe -Algorithm SHA256).Hash.ToLower()
# Compare
if ($expected -eq $actual) { "OK" } else { "MISMATCH" }
Previous Versions
Previous releases are available at the releases archive.
Next Steps
After installation, follow the Quick Start Guide to set up your first Muti Metroo agent.