From 7b077b7d6a115603472406fb8d3d52ac40543e3a Mon Sep 17 00:00:00 2001 From: benoitc Date: Sun, 19 Feb 2012 11:46:56 +0100 Subject: [PATCH] close #280 . Integrate a subset of changes proposed by DNX. Since gunicorn can still be used globally using some global envs variables. Thanks for the diff! --- doc/site/deploy.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/site/deploy.rst b/doc/site/deploy.rst index 08ba098e..0fcdd7fa 100644 --- a/doc/site/deploy.rst +++ b/doc/site/deploy.rst @@ -113,6 +113,12 @@ this:: Then you just need to use one of the three Gunicorn scripts that was installed into ``~/venvs/webapp/bin``. +Note: You can force the installation of Gunicorn in your Virtualenv by +passing ``-I`` or ``--ignore-installed`` option to pip:: + + $ source ~/venvs/webapp/bin/activate + $ pip install -I gunicorn + Monitoring ----------