Using pyenv to manage python versions
March 22, 2022
You can use pyenv to install and manage different python versions. Below uses brew.
brew install pyenv # Install pyenvpyenv install 3.7.8 # Install specific python versionpyenv global 3.7.8 # Set that version as active