Skip to content

Commit b15854c

Browse files
authored
Merge pull request #316 from The-Compiler/patch-1
Make sure a Python 2 pip is installed
2 parents 7589c05 + b168eee commit b15854c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python-setup/install_tools.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ set -e
1010
# subsequent actions in the current job, and not the current action.
1111
export PATH="$HOME/.local/bin:$PATH"
1212

13+
# The Ubuntu 20.04 GHA environment does not come with a Python 2 pip
14+
curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py
15+
python2 get-pip.py
16+
1317
python2 -m pip install --user --upgrade pip setuptools wheel
1418
python3 -m pip install --user --upgrade pip setuptools wheel
1519

0 commit comments

Comments
 (0)