Skip to content

Instantly share code, notes, and snippets.

@pH-7
Last active December 18, 2023 02:18
Show Gist options
  • Save pH-7/39f0143f77554bd67ff36e8631e50e62 to your computer and use it in GitHub Desktop.
Save pH-7/39f0143f77554bd67ff36e8631e50e62 to your computer and use it in GitHub Desktop.
Install Python v2.7 and set it as default one on Mac OS

Install Python 2.7 on Mac OS

You will need to have Python 2.7 (and not v3 to avoid incompatibilities with some libraries). To check what’s your default Python version, type python -V in your terminal.

brew install pyenv
pyenv install 2.7.18
pyenv global 2.7.18 # set Python 2.7 as the global default one
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment