deluge/docs/source/intro/01-install.md

145 lines
3.3 KiB
Markdown
Raw Normal View History

# Installing Deluge
Instructions for installing Deluge.
## <i class="fa fa-linux"></i> Linux
### <i class="icon-ubuntu"></i> Ubuntu
2021-12-12 18:39:41 +00:00
One-click [**Install**](https://tinyurl.com/installdeluge)
```
sudo apt install deluge
```
[Package Details](https://packages.ubuntu.com/deluge)
2019-06-05 22:32:37 +00:00
### <i class="icon-fedora"></i> Fedora
```
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)
## <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
Install with pip:
2019-06-05 22:32:37 +00:00
pip install deluge
Install with all [optional dependencies][depends]:
pip install deluge[all]
Will require system installed packages such as libtorent and GTK3. See [DEPENDS]
e.g. on Ubuntu/Debian install these packages:
sudo apt install python3-pip python3-libtorrent python3-gi python3-gi-cairo gir1.2-gtk-3.0 gir1.2-appindicator3
## Alternative Installs
2019-06-05 22:32:37 +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/)
#### Homebrew
1. Install [Homebrew]
1. Open a terminal to install required packages:
brew install pygobject3 gtk+3 adwaita-icon-theme
brew install libtorrent-rasterbar
1. To fix translations:
brew link gettext --force
1. Install Deluge:
pip install deluge
2019-06-05 22:32:37 +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/
[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