Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add qt6 apt package suggestion #7

Merged
merged 2 commits into from
Jun 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions Compilation-Debian-and-Ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ You need to install these packages in order to be able to compile qBittorrent fr
```bash
sudo apt install build-essential pkg-config automake libtool git zlib1g-dev libssl-dev libgeoip-dev
sudo apt install libboost-dev libboost-system-dev libboost-chrono-dev libboost-random-dev
sudo apt install cmake ninja-build
```

If you want, you can install the Boost libraries from source instead of installing them from the distro's repositories. This is quite easy to do, but generally does not make that much of a difference and is out of the scope of this guide.
Expand All @@ -34,10 +35,16 @@ qBittorrent uses the Qt framework as the basis for its GUI.

qBittorrent 4.0 - 4.1.x requires at least Qt 5.5.1, and qBittorrent 4.2 and later requires at least Qt 5.9.

For Debian 10, Ubuntu 18.04 LTS or later, just install Qt from the official repositories:
For Debian 10, Ubuntu 18.04 LTS or later, if you build qBittorrent with Qt5 just install Qt from the official repositories:

```bash
sudo apt install qtbase5-dev qttools5-dev libqt5svg5-dev
sudo apt install qtbase5-dev qttools5-dev libqt5svg5-dev qtbase5-private-dev
trim21 marked this conversation as resolved.
Show resolved Hide resolved
```

If you build with Qt6:

```bash
sudo apt install qt6-base-dev qt6-base-private-dev qt6-tools-dev
```

Note that Qt libraries in Debian 8/9 repository are too old for compiling newer qBittorrent versions, so you need to install newer Qt libraries some other way.
Expand Down