Python 2 Fixes

This commit is contained in:
earnolmartin 2021-03-05 18:11:01 -07:00
parent d2342c4218
commit 6fc6261995
2 changed files with 2 additions and 2 deletions

View file

@ -3293,7 +3293,7 @@ function installPipManuallyIfNeeded(){
currentPip=$(which pip)
if [ -z "$currentPip" ]; then
cd "$patchDir"
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
curl https://bootstrap.pypa.io/2.7/get-pip.py -o get-pip.py
python get-pip.py
fi

View file

@ -2985,7 +2985,7 @@ function installPipManuallyIfNeeded(){
currentPip=$(which pip)
if [ -z "$currentPip" ]; then
cd "$patchDir"
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
curl https://bootstrap.pypa.io/2.7/get-pip.py -o get-pip.py
python get-pip.py
fi