From c77822bff387c7f1f7df3c579dae6c8c95203859 Mon Sep 17 00:00:00 2001 From: Imre Farkas Date: Wed, 18 Sep 2013 13:24:08 +0200 Subject: [PATCH] Add note on how to update setuptools Change-Id: I04ec53c473de42b35ad36804056ea92550eebe9c Fixes: bug #1212133 --- INSTALL.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/INSTALL.rst b/INSTALL.rst index c3a62e34..41c23b18 100644 --- a/INSTALL.rst +++ b/INSTALL.rst @@ -26,6 +26,10 @@ Setting up a local environment for development can be done with tox:: # create virtualenv $ tox -e py27 +Note: if ``pip install`` fails due to an outdated setuptools, you can try to update it first:: + + $ sudo pip install --upgrade setuptools + Configuration -------------