Skip to main content

Choose Your Installation Method

Select the installation method that best suits your system and preferences:

Pre-built Binaries

Download and install pre-compiled CLI binaries

GUI Application

Desktop application for visual torrent management

Package Managers

Install using your preferred package manager

Docker

Install using Docker

Install mkbrr

Download the appropriate binary for your system from the GitHub Releases page or use the commands below.
Make sure the extraction directory (e.g., /usr/local/bin) is included in your system’s PATH environment variable so you can run mkbrr from any location.
wget $(curl -s https://api.github.com/repos/autobrr/mkbrr/releases/latest | grep download | grep linux_x86_64 | cut -d\" -f4)
sudo tar -C /usr/local/bin -xzf mkbrr_*_linux_x86_64.tar.gz mkbrr

Verify Installation

After installation, verify that mkbrr is working correctly:
mkbrr version
If you see the version number, mkbrr is installed correctly!

Troubleshooting

If you encounter any issues during installation:
If you installed mkbrr through a package manager (Homebrew, AUR, Alpine) and notice it’s not the latest version:
mkbrr update
This will update mkbrr to the latest version directly from GitHub.
If macOS prevents mkbrr from running due to security settings:
xattr -d com.apple.quarantine /usr/local/bin/mkbrr
chmod +x /usr/local/bin/mkbrr
If you get a “command not found” error after installation, ensure the installation directory is in your PATH:
# For Go installations
echo 'export PATH=$PATH:$(go env GOPATH)/bin' >> ~/.zshrc && source ~/.zshrc

# For binary installations
echo 'export PATH=$PATH:/usr/local/bin' >> ~/.zshrc && source ~/.zshrc
Need help? Join our Discord community or open an issue on GitHub.