Show Specific Versions with pyenv install --list
Table of Contents
Show Specific Versions
# Show only Python 3.x versions
pyenv install -l | grep "^ 3\."
# Show only Python 2.x versions
pyenv install --list | grep "^ 2\."
^
: Start of the line3\.
: Match “3.” (the dot.
means any character in regex, so escape it with\
)