Merge pull request #2480 from kofrezo/update_docs_install

Update Debian and Ubuntu distribution information
This commit is contained in:
Randall Leeds 2020-12-21 11:55:04 -05:00 committed by GitHub
commit 03c642e709
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,16 +96,43 @@ advantages:
rolled back in case of incompatibility. The package can also be purged rolled back in case of incompatibility. The package can also be purged
entirely from the system in seconds. entirely from the system in seconds.
stable ("stretch") stable ("buster")
------------------ ------------------
The version of Gunicorn in the Debian_ "stable" distribution is 19.6.0 (June The version of Gunicorn in the Debian_ "stable" distribution is 19.9.0
2017). You can install it using:: (December 2020). You can install it using::
$ sudo apt-get install gunicorn $ sudo apt-get install gunicorn3
You can also use the most recent version by using `Debian Backports`_. You can also use the most recent version 20.0.4 (December 2020) by using
First, copy the following line to your ``/etc/apt/sources.list``:: `Debian Backports`_. First, copy the following line to your
``/etc/apt/sources.list``::
deb http://ftp.debian.org/debian buster-backports main
Then, update your local package lists::
$ sudo apt-get update
You can then install the latest version using::
$ sudo apt-get -t buster-backports install gunicorn
oldstable ("stretch")
---------------------
While Debian releases newer than Stretch will give you gunicorn with Python 3
support no matter if you install the gunicorn or gunicorn3 package for Stretch
you specifically have to install gunicorn3 to get Python 3 support.
The version of Gunicorn in the Debian_ "oldstable" distribution is 19.6.0
(December 2020). You can install it using::
$ sudo apt-get install gunicorn3
You can also use the most recent version 19.7.1 (December 2020) by using
`Debian Backports`_. First, copy the following line to your
``/etc/apt/sources.list``::
deb http://ftp.debian.org/debian stretch-backports main deb http://ftp.debian.org/debian stretch-backports main
@ -115,34 +142,13 @@ Then, update your local package lists::
You can then install the latest version using:: You can then install the latest version using::
$ sudo apt-get -t stretch-backports install gunicorn $ sudo apt-get -t stretch-backports install gunicorn3
oldstable ("jessie") Testing ("bullseye") / Unstable ("sid")
-------------------- ---------------------------------------
The version of Gunicorn in the Debian_ "oldstable" distribution is 19.0 (June "bullseye" and "sid" contain the latest released version of Gunicorn 20.0.4
2014). You can install it using:: (December 2020). You can install it in the usual way::
$ sudo apt-get install gunicorn
You can also use the most recent version by using `Debian Backports`_.
First, copy the following line to your ``/etc/apt/sources.list``::
deb http://ftp.debian.org/debian jessie-backports main
Then, update your local package lists::
$ sudo apt-get update
You can then install the latest version using::
$ sudo apt-get -t jessie-backports install gunicorn
Testing ("buster") / Unstable ("sid")
-------------------------------------
"buster" and "sid" contain the latest released version of Gunicorn. You can
install it in the usual way::
$ sudo apt-get install gunicorn $ sudo apt-get install gunicorn
@ -150,8 +156,8 @@ install it in the usual way::
Ubuntu Ubuntu
====== ======
Ubuntu_ 12.04 (trusty) or later contains the Gunicorn package by default so that Ubuntu_ 20.04 LTS (Focal Fossa) or later contains the Gunicorn package by
you can install it in the usual way:: default 20.0.4 (December 2020) so that you can install it in the usual way::
$ sudo apt-get update $ sudo apt-get update
$ sudo apt-get install gunicorn $ sudo apt-get install gunicorn