https://stackoverflow.com/questions/60298514/how-to-reinstall-python2-from-homebrew/67274521#67274521 https://exerror.com/zsh-command-not-found-python/ https://www.macupdate.com/how-to/uninstall-python
# You can use pyenv to install python with:
brew install pyenv
pyenv install 2.7.18
# Optionally set it to your global default:
pyenv global 2.7.18
# Create Alias in .zshrc
alias python=/Users/<user>/.pyenv/versions/2.7.18/bin/python
# Reload shell and test
source .zshrc
python -V