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 binaries

Package Managers

Install using your preferred package manager

Docker

Install using Docker

Install mkbrr

  • Pre-built Binaries
  • Package Managers
  • Docker
  • Go Install
Download the appropriate binary for your system from the GitHub Releases page or use the commands below.
  • Linux
  • macOS
  • Windows
  • Generic (tar.gz)
  • Debian/Ubuntu (.deb)
  • Fedora/CentOS (.rpm)
  • Alpine (.apk)
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.
  • amd64
  • arm64
  • arm
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_amd64.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.