
pyenv
List of commands for pyenv:
-
pyenv:tldr:11b2e pyenv: Set Python version to be used in the current directory and all directories below it.$ pyenv local ${2-7-10}try on your machineexplain this command
-
pyenv:tldr:5e05e pyenv: Uninstall a Python version under the `${PYENV_ROOT}/versions` directory.$ pyenv uninstall ${2-7-10}try on your machineexplain this command
-
pyenv:tldr:7fedd pyenv: List all Python versions under the `${PYENV_ROOT}/versions` directory.$ pyenv versionstry on your machineexplain this command
-
pyenv:tldr:81a90 pyenv: List all available commands.$ pyenv commandstry on your machineexplain this command
-
pyenv:tldr:b18f2 pyenv: Set Python version to be used globally in the current machine.$ pyenv global ${2-7-10}try on your machineexplain this command
-
pyenv:tldr:bdb15 pyenv: List all Python versions that can be installed from upstream.$ pyenv install --listtry on your machineexplain this command
-
pyenv:tldr:c4f0d pyenv: Install a Python version under the `${PYENV_ROOT}/versions` directory.$ pyenv install ${2-7-10}try on your machineexplain this command