From 7ed908bad15c9593742e62365032402c1ed6978c Mon Sep 17 00:00:00 2001 From: Ehtesh Choudhury Date: Mon, 3 Mar 2014 17:11:23 -0500 Subject: [PATCH] Addendum for `pyenv install` usage This gives users an idea of which versions of python are available. Other version managers ([nvm](https://github.com/creationix/nvm), [rvm](https://rvm.io/rubies/list), etc) tell users how to list available versions as well. --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index c0fd2d46..6a9bec40 100644 --- a/README.md +++ b/README.md @@ -483,6 +483,24 @@ Lists all Python versions with the given command installed. 2.6.8 2.7.6 3.3.3 + +### pyenv install + +Part of [Python-build](https://github.com/yyuu/pyenv/tree/master/plugins/python-build), this installs versions of python + + $ pyenv install 2.7.6 + $ pyenv install 2.6.8 + $ pyenv versions + system + 2.6.8 + * 2.7.6 (set by /home/yyuu/.pyenv/version) + +### pyenv install --list + +List available remote versions of Python, including Anaconda, Jython, pypy, and stackless + + $ pyenv install --list + ## Development