1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-16 23:33:45 -05:00

search commands from python version stack.

users can use multiple python versions at once.
This commit is contained in:
Yamashita Yuu
2012-08-31 16:09:46 +09:00
parent 880ea61dd8
commit 8187bc84e3
11 changed files with 113 additions and 78 deletions

View File

@@ -44,7 +44,7 @@ global) echo "usage: pyenv global <version>
Sets the global Python version. You can override the global version at
any time by setting a directory-specific version with \`pyenv local'
or by setting the PYENV_VERSION environment variable.
or by setting the PYENV_VERSIONS environment variable.
$(print_set_version)"
;;
@@ -58,14 +58,14 @@ When you run a Python command, pyenv will look for an '.pyenv-version'
file in the current directory and each parent directory. If no such
file is found in the tree, pyenv will use the global Python version
specified with \`pyenv global', or the version specified in the
PYENV_VERSION environment variable.
PYENV_VERSIONS environment variable.
$(print_set_version)"
;;
shell) echo "usage: pyenv shell <version>
pyenv shell --unset
Sets a shell-specific Python version by setting the 'PYENV_VERSION'
Sets a shell-specific Python version by setting the 'PYENV_VERSIONS'
environment variable in your shell. This version overrides both
project-specific versions and the global version.