đź“ť Edit page
âž• Add page
Pyenv
Manage multipe versions of Python
“Simple Python version management”
Repo - pyenv/pyenv
List installed versions
$ pyenv versions
List available versions
$ pyenv install -l
Install
$ pyenv install 3.10.4
Select
Select just for current shell session:
$ pyenv shell <version>
Automatically select whenever you are in the current directory (or its subdirectories):
$ pyenv local <version>
Select globally for your user account:
$ pyenv global <version>