我想知道使用 pyenv install命令可以安装哪些 Python 版本。pyenv versions只列出已安装的版本,似乎没有列出可用版本的选项。
pyenv install
pyenv versions
如何找到可以用 pyenv install安装的 Python 版本?
pyenv accepts a switch to the install command to list available versions: --list, or -l for short:
install
--list
-l
$ pyenv install -l Available versions: 2.1.3 2.2.3 2.3.7 2.4.0 2.4.1 2.4.2 ...
Before running pyenv install -l, you may need to update pyenv as described here. Otherwise the list may not include the latest versions (thank you @csatt1).
pyenv install -l