From 7c63f9882d315a560defeffc1f6e0331fc79e6a4 Mon Sep 17 00:00:00 2001 From: Vivek Panyam Date: Tue, 26 Jan 2021 00:11:10 -0500 Subject: [PATCH] Fix pip bootstrapping on Python 2.7 --- build/install_python_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/install_python_deps.sh b/build/install_python_deps.sh index 07fc501a..05103eea 100755 --- a/build/install_python_deps.sh +++ b/build/install_python_deps.sh @@ -5,7 +5,7 @@ set -e NEUROPOD_PYTHON_BINARY="python${NEUROPOD_PYTHON_VERSION}" # Install pip -wget https://bootstrap.pypa.io/get-pip.py -O /tmp/get-pip.py +wget https://bootstrap.pypa.io/2.7/get-pip.py -O /tmp/get-pip.py ${NEUROPOD_PYTHON_BINARY} /tmp/get-pip.py # Setup a virtualenv