Skip to content

Installation

qbt ships as a single static binary for Linux, macOS and Windows.

Download the latest release for your platform and put it somewhere in your $PATH.

Extract the archive:

Terminal window
tar -xzvf qbittorrent-cli_${VERSION}_linux_amd64.tar.gz

Move it somewhere in $PATH (needs sudo if you are not root), or into your user $HOME/bin:

Terminal window
sudo mv qbt /usr/bin/

Verify that it runs - this should print the basic usage:

Terminal window
qbt

If you have Go installed you can install the latest release directly:

Terminal window
go install github.com/ludviglundgren/qbittorrent-cli/cmd/qbt@latest

Clone the repository and build with make:

Terminal window
make build

Or with the Go toolchain directly:

Terminal window
go build -o bin/qbt cmd/qbt/main.go

Builds made with goreleaser also embed version info:

Terminal window
goreleaser release --snapshot --skip=publish --clean

Once installed, head to the Configuration guide to connect qbt to your qBittorrent instance.