2016-02-08 18:48:16 +01:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: Download
|
|
|
|
permalink: /download/
|
|
|
|
---
|
|
|
|
|
|
|
|
## PyPI
|
|
|
|
|
2017-05-29 02:04:22 +02:00
|
|
|
Radicale is [available on PyPI](https://pypi.python.org/pypi/Radicale/). To
|
2016-02-08 18:48:16 +01:00
|
|
|
install, just type as superuser:
|
|
|
|
|
2017-05-29 02:04:25 +02:00
|
|
|
$ python3 -m pip install --upgrade radicale
|
2016-02-08 18:48:16 +01:00
|
|
|
|
|
|
|
## Git Repository
|
|
|
|
|
|
|
|
If you want the development version of Radicale, take a look at the
|
2017-05-29 02:04:28 +02:00
|
|
|
[git repository on GitHub]({{ site.github.repository_url }}), or install it
|
|
|
|
directly with:
|
2016-02-08 18:48:16 +01:00
|
|
|
|
2017-05-29 02:04:28 +02:00
|
|
|
$ python3 -m pip install --upgrade git+https://github.com/Kozea/Radicale
|
2016-02-08 18:48:16 +01:00
|
|
|
|
2017-06-04 15:39:55 +02:00
|
|
|
You can also download the content of the repository as an
|
|
|
|
[archive](https://github.com/Kozea/Radicale/tarball/master).
|
2016-02-08 18:48:16 +01:00
|
|
|
|
|
|
|
## Source Packages
|
|
|
|
|
|
|
|
You can download the Radicale package for each release:
|
|
|
|
|
2017-05-27 11:34:34 +02:00
|
|
|
{% assign releases = site.github.releases | where:"draft",false | sort:"created_at" | reverse %}
|
2016-02-12 23:57:24 +01:00
|
|
|
{% for release in releases %}
|
2017-06-24 10:14:14 +02:00
|
|
|
- [{% if release.prerelease == false %}<strong>{% endif %}{{ release.tag_name }}{% if release.name != "" and release.tag_name != release.name %} - {{ release.name }}{% endif %}{% if release.prerelease == false %}</strong>{% endif %}]({{ release.tarball_url }}){% endfor %}
|
2016-02-08 18:48:16 +01:00
|
|
|
|
|
|
|
## Linux Distribution Packages
|
|
|
|
|
|
|
|
Radicale has been packaged for:
|
|
|
|
|
|
|
|
- [ArchLinux (AUR)](https://aur.archlinux.org/packages/radicale/) by
|
|
|
|
Guillaume Bouchard
|
|
|
|
- [Debian](http://packages.debian.org/radicale) by Jonas Smedegaard
|
2016-08-11 19:03:50 +02:00
|
|
|
- [Gentoo](https://packages.gentoo.org/packages/www-apps/radicale)
|
|
|
|
by René Neumann, Maxim Koltsov and Manuel Rüger
|
2016-02-08 18:48:16 +01:00
|
|
|
- [Fedora](https://admin.fedoraproject.org/pkgdb/package/radicale/) by Jorti
|
2016-08-11 19:03:50 +02:00
|
|
|
- [Mageia](http://madb.mageia.org/package/show/application/0/name/radicale) by
|
|
|
|
Jani Välimaa
|
2016-02-08 18:48:16 +01:00
|
|
|
- [OpenBSD](http://openports.se/productivity/radicale) by Sergey Bronnikov,
|
|
|
|
Stuart Henderson and Ian Darwin
|
|
|
|
- [openSUSE](http://software.opensuse.org/package/Radicale?search_term=radicale)
|
2016-08-11 19:03:50 +02:00
|
|
|
by Ákos Szőts and Rueckert
|
2016-02-08 18:48:16 +01:00
|
|
|
- [PyPM](http://code.activestate.com/pypm/radicale/)
|
|
|
|
- [Slackware](http://schoepfer.info/slackware.xhtml#packages-network) by
|
|
|
|
Johannes Schöpfer
|
|
|
|
- [Trisquel](http://packages.trisquel.info/search?searchon=names&keywords=radicale)
|
|
|
|
- [Ubuntu](http://packages.ubuntu.com/radicale) by the MOTU and Jonas
|
|
|
|
Smedegaard
|
|
|
|
|
|
|
|
Radicale is also
|
|
|
|
[available on Cloudron](https://cloudron.io/button.html?app=org.radicale.cloudronapp)
|
|
|
|
and has a Dockerfile.
|
|
|
|
|
|
|
|
If you are interested in creating packages for other Linux distributions, read
|
2016-02-12 22:08:22 +01:00
|
|
|
the ["Contribute" page]({{ site.baseurl }}/contribute/).
|