mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 20:56:47 +00:00
14 lines
421 B
Bash
Executable File
14 lines
421 B
Bash
Executable File
#!/bin/sh
|
|
source ~/utils/utils.sh
|
|
|
|
echo "Installing Python Tooling"
|
|
|
|
echo "Brew Installing Python 3"
|
|
/usr/local/bin/brew install python3
|
|
|
|
echo "Brew Installing Python 2"
|
|
# Create local tap with formula due to python2 formula depreciation
|
|
/usr/local/bin/brew tap-new local/python2
|
|
FORMULA_PATH=$(/usr/local/bin/brew extract python@2 local/python2 | grep "Homebrew/Library/Taps")
|
|
/usr/local/bin/brew install $FORMULA_PATH
|