How do I list python software using pyenv?



  • Also see: pyenv help

    Without any filtering the output is too long.

    $ pyenv install --list
    Available versions:
      2.1.3
      2.2.3
      2.3.7
    ...
    ...
    ...
    

    grep out the content you are interested in. In the example list all version 3.8.x

    $ pyenv install --list | grep " 3\.[8]"
      3.8.0
      3.8-dev
      3.8.1
      3.8.2
      3.8.3
      3.8.4
      3.8.5
      3.8.6
    

Log in to reply
 

© Lightnetics 2024