Use sudo -H -E when running pip

-E will result in pip writing to the current users disk cache, and
that prevents future non-root pip calls using it properly.

Change-Id: Ib70b3d59a20967bc7e08c70387eb7dd6f7f1b5c5
This commit is contained in:
Robert Collins 2015-10-05 08:32:49 +13:00 committed by Julia Kreger
parent 7ce4e9595d
commit 4148a5a621
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ fi
wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py
sudo python /tmp/get-pip.py
sudo -E pip install -r "$(dirname $0)/../requirements.txt"
sudo -H -E pip install -r "$(dirname $0)/../requirements.txt"
u=$(whoami)
g=$(groups | awk '{print $1}')