Revanth Vermareddy

Pyenv Commands to Remember

0 minutes (109 words)
pyenv-icon

🔗Pyenv

Here are some common pyenv commands

# To list all the available python versions
pyenv versions

# to install any specific python version
pyenv install <version of python to install>
# Ex: pyenv install 3.7.9

# to set the required version as global
pyenv global <version of python>
# Ex: pyenv global 3.10.6

# to install pyenv on amzn linux
# link: https://gist.github.com/norsec0de/b863e2d99e251b848b5e9fece1c45f1a

Tags: #pyenv