From b445f4120316d82767e976f42632a30565a2c6fa Mon Sep 17 00:00:00 2001 From: Fake-Name Date: Sat, 14 Apr 2018 18:55:13 -0700 Subject: [PATCH] Fix more pip issues. See https://github.com/pypa/pip/issues/5220 https://github.com/pypa/get-pip/issues/19 https://github.com/pypa/get-pip/issues/20 --- configure.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.sh b/configure.sh index 859bddd3..cf5d7257 100755 --- a/configure.sh +++ b/configure.sh @@ -103,14 +103,14 @@ else python3 -m venv --without-pip venv wget https://bootstrap.pypa.io/get-pip.py - ./venv/bin/python3 get-pip.py - rm get-pip.py - source venv/bin/activate + ./venv/bin/python3 get-pip.py --force-reinstall ./venv/bin/pip install six # ./venv/bin/pip install cython ./venv/bin/pip install requests ./venv/bin/pip install chromedriver_installer ./venv/bin/pip install git+https://github.com/berkerpeksag/astor.git + source venv/bin/activate + rm get-pip.py fi;