Sync translations from Transifex and run lupdate
[qBittorrent.git] / INSTALL
blob86d3415481b3cab66e054789cde790e7a4726dc2
1 qBittorrent - A BitTorrent client in C++ / Qt
2 ------------------------------------------
4 1) Install these dependencies:
6   - Boost >= 1.65
8   - libtorrent-rasterbar >= 1.2.11 (by Arvid Norberg)
9       * https://www.libtorrent.org/
10       * Be careful: another library (the one used by rTorrent) uses a similar name
12   - OpenSSL >= 1.1.1
14   - Qt >= 5.9.5
16   - zlib >= 1.2.11
18   - pkg-config (compile-time only on *nix systems)
20   - Python >= 3.5.0 (optional, runtime only)
21       * Required by the internal search engine
23 Dependency version numbers are bumped every once in a while to keep the range of properly tested configurations manageable, even if not strictly required to build.
24 You may be able to build with older versions of (some of) the dependencies other than the minimum versions specified in the build scripts, but support for such builds is not provided - you are on your own.
25 Please ensure you are building with an officially supported configuration when reporting bugs.
27 2a) Compile and install qBittorrent with Qt graphical interface
29   $ ./configure
30   $ make && make install
31   $ qbittorrent
33   will install and execute qBittorrent.
35 2b) Compile and install qBittorrent without Qt graphical interface
37   $ ./configure --disable-gui
38   $ make && make install
39   $ qbittorrent-nox
41   will install and execute qBittorrent.
43 DOCUMENTATION:
44 Please note that there is a "Compilation" section at http://wiki.qbittorrent.org.
46 ------------------------------------------
47 sledgehammer999 <sledgehammer999@qbittorrent.org>