Skip to content

Commit

Permalink
Merge pull request #316 from The-Compiler/patch-1
Browse files Browse the repository at this point in the history
Make sure a Python 2 pip is installed
  • Loading branch information
David Verdeguer authored and GitHub committed Nov 20, 2020
2 parents 7589c05 + b168eee commit b15854c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python-setup/install_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ set -e
# subsequent actions in the current job, and not the current action.
export PATH="$HOME/.local/bin:$PATH"

# The Ubuntu 20.04 GHA environment does not come with a Python 2 pip
curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py
python2 get-pip.py

python2 -m pip install --user --upgrade pip setuptools wheel
python3 -m pip install --user --upgrade pip setuptools wheel

Expand Down

0 comments on commit b15854c

Please sign in to comment.