pyenv-uninstall - Uninstall Python versions
Contents
Description
The pyenvuninstall command removes one or more specified Python versions installed by pyenv. The command
attempts to uninstall the given version of Python, and if the -f or --force option is provided, it
removes the version without asking for confirmation. If the version doesn't exist, it doesn't display an
error message.
Examples
To uninstall a specific version of Python:
$pyenvuninstall3.8.5
To uninstall multiple versions of Python:
$pyenvuninstall3.7.93.8.5
To force the uninstallation of a version without a prompt:
$pyenvuninstall--force3.7.9Name
pyenv-uninstall - Uninstall Python versions
Options
-f, --force
Uninstall the specified version without prompting for confirmation.
If the version doesn't exist, no error is displayed.
See Also
pyenv(1), pyenv-versions(1)
Synopsis
pyenvuninstall [-f | --force] <version> ...
