From 9398e1543b268ca3f98d2ac7d9fd63acd8fa49d3 Mon Sep 17 00:00:00 2001 From: Ivan Elfimov Date: Fri, 7 Aug 2020 23:55:34 +0300 Subject: [PATCH] Update tutorial with new versions of python and libzmq libzmq-dev is now libzmq3-dev and we no longer support older version of python. The bad thing is that with new python versions circus-web is broken and you can't actually follow the guide. --- docs/source/tutorial/step-by-step.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/source/tutorial/step-by-step.rst b/docs/source/tutorial/step-by-step.rst index d47905318..bcccf3b2a 100644 --- a/docs/source/tutorial/step-by-step.rst +++ b/docs/source/tutorial/step-by-step.rst @@ -13,13 +13,12 @@ We're going to supervise a WSGI application. Installation ------------ -Circus is tested on Mac OS X and Linux with the latest Python 2.7, -3.2 and 3.3. To run a full Circus, you will also need **libzmq**, +Circus is tested on Mac OS X and Linux with the latest Python 3.5+. To run a full Circus, you will also need **libzmq**, **libevent** & **virtualenv**. On Debian-based systems:: - $ sudo apt-get install libzmq-dev libevent-dev python-dev python-virtualenv + $ sudo apt-get install libzmq3-dev libevent-dev python-dev python-virtualenv Create a virtualenv and install *circus*, *circus-web* and *chaussette* in it ::