Managing Python projects with PyEnv
How to Manage Virtual Environments with PyEnv
Managing virtual environments with pyenv
Good article. Has some good descriptions but here are the highlights that I will end up using.
#### list installed Python versions
pyenv install --list
#### install one
pyenv install 3.8.0
#### to activate and start using Python 3 …