How to downgrade python version from 3.8 to 3.7 (mac)
Consider installing pyenv with Homebrew on macOS brew update brew install pyenv OR Clone the repository to get the latest version of pyenv git clone https://github.com/pyenv/pyenv.git ~/.pyenv Define your environment variables (For a recent MacOS you may want to replace ~/.bash_profile with ~/.zshrc as that is the default shell) echo ‘export PYENV_ROOT=”$HOME/.pyenv”‘ >> ~/.bash_profile echo … Read more