From a4407abfa581f1ba11abd24c7b56db315e02dc4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kr=C3=B6ger?= Date: Mon, 21 Dec 2020 15:56:39 +0100 Subject: [PATCH] Default to Python 3 version of gunicorn in Stretch --- docs/source/install.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index 64100e722..66f2479e7 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -102,7 +102,7 @@ stable ("buster") The version of Gunicorn in the Debian_ "stable" distribution is 19.9.0 (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 20.0.4 (December 2020) by using `Debian Backports`_. First, copy the following line to your @@ -121,10 +121,14 @@ You can then install the latest version using:: 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 gunicorn + $ 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 @@ -138,7 +142,7 @@ Then, update your local package lists:: You can then install the latest version using:: - $ sudo apt-get -t stretch-backports install gunicorn + $ sudo apt-get -t stretch-backports install gunicorn3 Testing ("bullseye") / Unstable ("sid") ---------------------------------------