From c0a5fccc040f7ee5d068d160ecba3c72d4429dfe Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 6 Apr 2013 19:22:01 +0200 Subject: [PATCH] pip 1.1 no longer supports -E --- README | 2 +- vm/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 6b9cf462e..00c3b08e7 100644 --- a/README +++ b/README @@ -58,7 +58,7 @@ Important: "use_your_own" is a password and you have to use the same value here bzr branch http://code.0x2620.org/pandora pandora cd pandora virtualenv --system-site-packages . - pip -E . install -r requirements.txt + ./bin/pip install -r requirements.txt cd static bzr branch http://code.0x2620.org/oxjs diff --git a/vm/install.sh b/vm/install.sh index 64cc747e3..3d53673ab 100755 --- a/vm/install.sh +++ b/vm/install.sh @@ -3,5 +3,5 @@ CH="chroot $1" $CH bzr branch http://code.0x2620.org/pandora /srv/pandora $CH bzr branch http://code.0x2620.org/oxjs /srv/pandora/static/oxjs $CH virtualenv --system-site-packages /srv/pandora -$CH pip -E /srv/pandora install -r /srv/pandora/requirements.txt +$CH /srv/pandora/bin/pip install -r /srv/pandora/requirements.txt