Skip to content

Ferdinand Agyei-Yeboah

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 pyenv
pyenv install 3.7.8 # Install specific python version
pyenv global 3.7.8 # Set that version as active

Software Engineering Tutorials & Best Practices