Add WebUI search API controller
[qBittorrent.git] / INSTALL
blobbc84b7d980ad3feea6125c839e425ff033d68b80
1 qBittorrent - A BitTorrent client in C++ / Qt4
2 ------------------------------------------
4 1) Compile and install qBittorrent with Qt4 Graphical Interface
6   $ ./configure
7   $ make && make install
8   $ qbittorrent
10   will install and execute qBittorrent hopefully without any problems.
12   Dependencies:
13     - Qt >= 4.6.0 (libqtgui, libqtcore, libqtnetwork, libqtxml, libqtdbus/optional)
15     - pkg-config executable
17     - libtorrent-rasterbar by Arvid Norberg (>= 1.0.6)
18         -> http://www.libtorrent.net
19         Be careful: another library (the one used by rTorrent) uses a similar name.
21     - libboost >= 1.35.x (libboost-system)
23     - python >= 2.3 (needed by search engine)
24         * Run time only dependency
26     - geoip-database (optional)
27         * If qBittorrent cannot find this database, it will try to resolve countries using the Internet but it will be a lot slower.
28         * Run time only dependency
30 2) Compile and install qBittorrent without Qt4 Graphical interface
32   $ ./configure --disable-gui
33   $ make && make install
34   $ qbittorrent
36   will install and execute qBittorrent hopefully without any problems.
38   Dependencies:
39     - Qt >= 4.4.0 (libqt-devel, libqtcore, libqtnetwork)
41     - pkg-config executable
43     - libtorrent-rasterbar by Arvid Norberg (>= v1.0.6)
44         -> http://www.libtorrent.net
45         Be careful: another library (the one used by rTorrent) uses a similar name.
47     - libboost: libboost-filesystem, libboost-date-time, libboost-thread, libboost-serialization
50 DOCUMENTATION:
51 Please note that there is a documentation with a "compiling howto" at http://wiki.qbittorrent.org.
53 ------------------------------------------
54 Christophe Dumez <chris@qbittorrent.org>