2019-04-03 12:31:38 +00:00
|
|
|
# Installing Deluge
|
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
Instructions for installing Deluge.
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
## <i class="fa fa-linux"></i> Linux
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
### <i class="icon-ubuntu"></i> Ubuntu
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:39:41 +00:00
|
|
|
One-click [**Install**](https://tinyurl.com/installdeluge)
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
```
|
|
|
|
sudo apt install deluge
|
|
|
|
```
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
[Package Details](https://packages.ubuntu.com/deluge)
|
2019-06-05 22:32:37 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
### <i class="icon-fedora"></i> Fedora
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
```
|
|
|
|
sudo dnf install deluge
|
|
|
|
```
|
|
|
|
|
|
|
|
[Package Details](https://src.fedoraproject.org/rpms/deluge)
|
|
|
|
|
|
|
|
### <i class="icon-archlinux"></i> Arch
|
|
|
|
|
|
|
|
```
|
|
|
|
pacman -S deluge-gtk
|
|
|
|
```
|
|
|
|
|
|
|
|
[Arch Wiki](https://wiki.archlinux.org/title/Deluge)
|
|
|
|
|
|
|
|
### <i class="icon-suse"></i> OpenSUSE
|
|
|
|
|
|
|
|
[**1 Click Install**](http://packman.links2linux.org/install/deluge)
|
|
|
|
|
|
|
|
[Package Details](https://software.opensuse.org/package/deluge)
|
|
|
|
|
|
|
|
### <i class="icon-gentoo"></i> Gentoo
|
|
|
|
|
|
|
|
[Package Details](https://packages.gentoo.org/packages/net-p2p/deluge)
|
|
|
|
|
2021-12-12 18:39:41 +00:00
|
|
|
### Flatpak
|
|
|
|
|
|
|
|
One-click [**Install**](https://dl.flathub.org/repo/appstream/org.deluge_torrent.deluge.flatpakref)
|
|
|
|
|
|
|
|
[Package Details](https://flathub.org/apps/details/org.deluge_torrent.deluge)
|
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
## <i class="fa fa-windows"></i> Windows
|
|
|
|
|
|
|
|
Unfortunately no official installer package currently available.
|
|
|
|
|
|
|
|
See [Alternative Installs](#alternative-installs)
|
|
|
|
|
|
|
|
## <i class="fa fa-apple"></i> macOS
|
|
|
|
|
|
|
|
Unfortunately no official installer package currently available.
|
|
|
|
|
|
|
|
See [Alternative Installs](#alternative-installs)
|
|
|
|
|
|
|
|
## <i class="icon-freebsd"></i> FreeBSD
|
|
|
|
|
|
|
|
```
|
|
|
|
pkg add deluge
|
|
|
|
```
|
|
|
|
|
|
|
|
[Package details](https://www.freshports.org/net-p2p/deluge/)
|
|
|
|
|
|
|
|
## <i class="icon-python"></i> PyPi
|
2019-04-03 12:31:38 +00:00
|
|
|
|
|
|
|
Install with pip:
|
|
|
|
|
2019-06-05 22:32:37 +00:00
|
|
|
pip install deluge
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
Install with all [optional dependencies][depends]:
|
2019-06-21 09:56:10 +00:00
|
|
|
|
|
|
|
pip install deluge[all]
|
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
Will require system installed packages such as libtorent and GTK3. See [DEPENDS]
|
|
|
|
|
|
|
|
e.g. on Ubuntu/Debian install these packages:
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
sudo apt install python3-pip python3-libtorrent python3-gi python3-gi-cairo gir1.2-gtk-3.0 gir1.2-appindicator3
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
## Alternative Installs
|
2019-06-05 22:32:37 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
### Ubuntu PPA
|
|
|
|
|
|
|
|
The [stable PPA] contains the latest releases.
|
|
|
|
|
|
|
|
sudo add-apt-repository -u ppa:deluge-team/stable
|
|
|
|
sudo apt install deluge
|
|
|
|
|
|
|
|
The [development PPA] contains daily builds from the `develop` branch.
|
|
|
|
|
|
|
|
sudo add-apt-repository -u ppa:deluge-team/develop
|
|
|
|
sudo apt install deluge
|
|
|
|
|
|
|
|
### Windows Community
|
|
|
|
|
|
|
|
Due to move to GTK3 and Python 3 and problems with pyinstaller there are only community
|
|
|
|
created installers available.
|
|
|
|
|
|
|
|
Check sticky topics in [Windows Forum] for latest updates.
|
|
|
|
|
|
|
|
For reference [issue #3201] is tracking progress on an official installer.
|
|
|
|
|
|
|
|
### macOS Community
|
|
|
|
|
|
|
|
#### Unofficial `.app` packages
|
|
|
|
|
|
|
|
Check sticky topics in [MacOS Forum]
|
|
|
|
|
|
|
|
#### Macports
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo port install deluge
|
|
|
|
```
|
|
|
|
|
|
|
|
[Package Details](https://ports.macports.org/port/deluge/)
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
#### Homebrew
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2019-06-08 18:29:20 +00:00
|
|
|
1. Install [Homebrew]
|
2021-12-12 18:25:32 +00:00
|
|
|
1. Open a terminal 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
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
1. 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
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
1. Install Deluge:
|
2019-04-03 12:31:38 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
pip install deluge
|
2019-06-05 22:32:37 +00:00
|
|
|
|
2021-12-12 18:25:32 +00:00
|
|
|
[development ppa]: https://launchpad.net/~deluge-team/+archive/ubuntu/develop/
|
|
|
|
[stable ppa]: https://launchpad.net/~deluge-team/+archive/ubuntu/stable/
|
2019-06-05 22:32:37 +00:00
|
|
|
[homebrew]: https://brew.sh/
|
2021-12-12 18:25:32 +00:00
|
|
|
[issue #3201]: https://dev.deluge-torrent.org/ticket/3201
|
|
|
|
[windows forum]: https://forum.deluge-torrent.org/viewforum.php?f=12
|
|
|
|
[macos forum]: https://forum.deluge-torrent.org/viewforum.php?f=13
|
|
|
|
[depends]: ../depends.md
|