2019-04-03 12:31:38 +00:00
|
|
|
# Installing Deluge
|
|
|
|
|
2019-06-05 22:32:37 +00:00
|
|
|
These are the instructions for installing Deluge. Consider them a work-in-progress and
|
|
|
|
feel free to make suggestions for improvement.
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-05 22:32:37 +00:00
|
|
|
## <i class="icon-ubuntu"></i> Ubuntu
|
2019-04-03 12:31:38 +00:00
|
|
|
|
|
|
|
### PPA
|
|
|
|
|
2019-06-05 22:32:37 +00:00
|
|
|
Until the stable PPA is updated, the development version of Deluge can be used:
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-08 15:42:25 +00:00
|
|
|
sudo add-apt-repository -u ppa:deluge-team/stable
|
2019-06-05 22:32:37 +00:00
|
|
|
sudo apt install deluge
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-05 22:32:37 +00:00
|
|
|
### <i class="icon-python"></i> PyPi
|
|
|
|
|
|
|
|
To install from Python PyPi, Deluge requires the following system installed packages:
|
2019-04-03 12:31:38 +00:00
|
|
|
|
|
|
|
sudo apt install python3-pip python3-libtorrent python3-gi python3-gi-cairo gir1.2-gtk-3.0 gir1.2-appindicator3
|
|
|
|
|
|
|
|
Install with pip:
|
|
|
|
|
2019-06-05 22:32:37 +00:00
|
|
|
pip install deluge
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-05 22:32:37 +00:00
|
|
|
## <i class="fa fa-windows"></i> Windows
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-15 18:44:33 +00:00
|
|
|
Unfortunately due to move to GTK3 and Python 3 there is no installer package currently
|
2019-06-11 10:31:43 +00:00
|
|
|
available for Windows.
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-15 18:44:33 +00:00
|
|
|
Intrepid users can install Deluge from separate packages as detailed in [issue #3201].
|
2019-06-05 22:32:37 +00:00
|
|
|
|
|
|
|
## <i class="fa fa-apple"></i> macOS
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-15 18:44:33 +00:00
|
|
|
There is no `.app` package currently for macOS, but can try Deluge with [Homebrew].
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-08 18:29:20 +00:00
|
|
|
1. Install [Homebrew]
|
|
|
|
2. Open a terminal.
|
|
|
|
3. Run the following to install required packages:
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-10 05:17:51 +00:00
|
|
|
brew install pygobject3 gtk+3 adwaita-icon-theme
|
2019-06-08 18:29:20 +00:00
|
|
|
brew install libtorrent-rasterbar
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-08 18:29:20 +00:00
|
|
|
4. To fix translations:
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-08 18:29:20 +00:00
|
|
|
brew link gettext --force
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-08 18:29:20 +00:00
|
|
|
5. Install Deluge:
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-08 18:29:20 +00:00
|
|
|
pip3 install deluge
|
2019-06-05 22:32:37 +00:00
|
|
|
|
|
|
|
[develop ppa]: https://launchpad.net/~deluge-team/+archive/ubuntu/develop/
|
|
|
|
[homebrew]: https://brew.sh/
|
|
|
|
[python 3.6]: https://www.python.org/downloads/release/python-368/
|
|
|
|
[gvsbuild]: https://ci.appveyor.com/api/buildjobs/b0y2sttcq3t1071q/artifacts/gvsbuild-vs14-x64.tar.gz
|
2019-06-12 13:56:21 +00:00
|
|
|
[issue #3201]: https://dev.deluge-torrent.org/ticket/3201#comment:9
|