From 58f2059bd8a86a9c730325b75f2689231936e19c Mon Sep 17 00:00:00 2001 From: Yehuda Sadeh Date: Tue, 21 Feb 2017 14:12:40 -0800 Subject: [PATCH] bootstrap: enable system site packages, force install of nose Signed-off-by: Yehuda Sadeh --- bootstrap | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 907596c..c845f0f 100755 --- a/bootstrap +++ b/bootstrap @@ -25,16 +25,17 @@ if [ -f /etc/redhat-release ]; then fi fi -virtualenv --no-site-packages --distribute virtualenv +virtualenv --system-site-packages --distribute virtualenv # avoid pip bugs ./virtualenv/bin/pip install --upgrade pip # work-around change in pip 1.5 ./virtualenv/bin/pip install six +./virtualenv/bin/pip install -I nose ./virtualenv/bin/pip install setuptools --no-use-wheel --upgrade -./virtualenv/bin/pip install -r requirements.txt +./virtualenv/bin/pip install -U -r requirements.txt # forbid setuptools from using the network because it'll try to use # easy_install, and we really wanted pip; next line will fail if pip -- 2.47.3