-
-
Notifications
You must be signed in to change notification settings - Fork 67
Installation
qbit_manage offers multiple installation methods to suit different use cases:
-
Windows: Download and run the
.exe
installer -
macOS: Download and install the
.dmg
package -
Linux: Download and install the
.deb
package
The desktop app provides a graphical interface and automatically handles configuration file setup.
-
Windows:
qbit-manage-windows-amd64.exe
-
macOS:
qbit-manage-macos-arm64
(Apple Silicon) orqbit-manage-macos-x86_64
(Intel) -
Linux:
qbit-manage-linux-amd64
Perfect for server environments, automation, or users who prefer command-line tools.
- Multi-architecture support (amd64, arm64, arm/v7)
- Ideal for containerized environments and NAS systems
- Install from source or PyPI
- For developers or users who want to modify the code
- Desktop App Installation
- Standalone Binary Installation
- Python/Source Installation
- Docker Installation
- unRAID Installation
- Download
qbit-manage-*-desktop-installer-setup.exe
from the releases page - Run the installer and follow the setup wizard
- Launch qbit_manage from the Start Menu or desktop shortcut
- The app will automatically create the configuration directory and files
- Download
qbit-manage-*-desktop-installer.dmg
from the releases page - Open the DMG file and drag qbit_manage to your Applications folder
- Launch qbit_manage from Applications (you may need to allow it in System Preferences > Security & Privacy)
- The app will automatically create the configuration directory and files
- Download
qbit-manage-*-desktop-installer.deb
from the releases page - Install using your package manager:
sudo dpkg -i qbit-manage-*-desktop-installer.deb sudo apt-get install -f # Fix any dependency issues
- Launch qbit_manage from your applications menu or run
qbit-manage
in terminal - The app will automatically create the configuration directory and files
- Download
qbit-manage-windows-amd64.exe
from the releases page - Place the executable in a directory of your choice (e.g.,
C:\Program Files\qbit-manage\
) - Add the directory to your PATH environment variable (optional)
- Run from Command Prompt or PowerShell:
qbit-manage-windows-amd64.exe --help
- Download the appropriate binary from the releases page:
-
qbit-manage-macos-arm64
for Apple Silicon Macs (M1, M2, M3, etc.) -
qbit-manage-macos-x86_64
for Intel Macs
-
- Make the binary executable:
chmod +x qbit-manage-macos-*
- Move to a directory in your PATH (optional):
sudo mv qbit-manage-macos-* /usr/local/bin/qbit-manage
- Run the binary:
./qbit-manage-macos-* --help
- Download
qbit-manage-linux-amd64
from the releases page - Make the binary executable:
chmod +x qbit-manage-linux-amd64
- Move to a directory in your PATH (optional):
sudo mv qbit-manage-linux-amd64 /usr/local/bin/qbit-manage
- Run the binary:
./qbit-manage-linux-amd64 --help
For developers or users who want to modify the code, you can install from source or PyPI.
- Python 3.9 or higher
- Git (for source installation)
# Install uv first
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install qbit-manage
uv tool install qbit-manage
# Clone the repository
git clone https://github.com/StuffAnThings/qbit_manage.git
cd qbit_manage
# Install uv if not already installed
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install the package
uv tool install .
After installation, you can run qbit-manage from anywhere:
# Show help and available options
qbit-manage --help
# Run once (without scheduler)
qbit-manage --run
# Run with web UI (default on desktop)
qbit-manage --web-server
# Run without web UI (force disable)
qbit-manage --web-server=False
After installation, you can run qbit_manage using:
qbit-manage --help
Tip
For Python installations, it's recommended to use a virtual environment to avoid conflicts with other packages.
For development work or to contribute to the project:
# Clone the repository
git clone https://github.com/StuffAnThings/qbit_manage.git
cd qbit_manage
# Install uv if not already installed
curl -LsSf https://astral.sh/uv/install.sh | sh
# Create virtual environment and install dependencies
uv venv
source .venv/bin/activate # Linux/macOS
# .venv\Scripts\activate # Windows
# Install in development mode
uv pip install -e .
Tool installation:
uv tool upgrade qbit-manage
Development installation:
cd qbit_manage
git pull
uv pip install -e . --upgrade
-
Windows:
%APPDATA%\qbit-manage\config.yml
-
macOS:
~/Library/Application Support/qbit-manage/config.yml
-
Linux:
~/.config/qbit-manage/config.yml
-
Container Path:
/app/config.yml
-
Host Mount: Typically mounted from
/path/to/your/config:/config
You can override the default location using the --config-dir
or -cd
command line option:
qbit-manage --config-dir /path/to/your/config/directory