mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-10-10 05:46:55 +08:00
# Improvements - Support cross-platform binary builds (Linux/Windows/MacOS) - Adds desktop app installers (Linux/Windows/MacOS) - Container images for latest now pointed to newest version automatically (Fixes #897) - Enable automatic open of webUI in local installs - Add persistence toggling for webUI scheduler # Bug Fixes - Fix schedule.yml not loaded upon restarting Docker container (Fixes #906) - Fix bug where torrents were not being paused after share limits reached (Fixes #901) - Fix(api): prevent path traversal vulnerability in backup restore endpoint (Fixes CWE-22 Security Vulnerability) - Fix scheduler to run interval jobs immediately on startup **Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.5.3...v4.5.4 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
4.5 KiB
4.5 KiB
Installation Options
qbit_manage offers multiple installation methods to suit different use cases:
Installation Methods
1. Desktop App (Recommended for most users)
- 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.
2. Standalone Binary (Command-line)
- 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.
3. Docker Container
- Multi-architecture support (amd64, arm64, arm/v7)
- Ideal for containerized environments and NAS systems
4. Python Installation
- Install from source or PyPI
- For developers or users who want to modify the code
Detailed Installation Guides
- Desktop App Installation
- Standalone Binary Installation
- Docker Installation
- Python/Source Installation
- unRAID Installation
- NIX Installation
Desktop App Installation
Windows
- 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
macOS
- 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
Linux
- 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
Standalone Binary Installation
Windows
- 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
macOS
- 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
Linux
- 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
Quick Reference: Default Configuration File Locations
Desktop App & Standalone Binary
- Windows:
%APPDATA%\qbit-manage\config.yml
- macOS:
~/Library/Application Support/qbit-manage/config.yml
- Linux:
~/.config/qbit-manage/config.yml
Docker Installation
- Container Path:
/app/config.yml
- Host Mount: Typically mounted from
/path/to/your/config:/config
Custom Location
You can override the default location using the --config-file
or -c
command line option:
qbit-manage --config-file /path/to/your/config.yml