1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
.TH PYENV-UNINSTALL 1 "February 2025" "pyenv-uninstall manual" "User Commands"
.SH NAME
\fBpyenv-uninstall\fR \- Uninstall Python versions
.SH SYNOPSIS
.B pyenv uninstall
[\fB-f\fR | \fB--force\fR] <\fBversion\fR> ...
.SH DESCRIPTION
The \fBpyenv uninstall\fR command removes one or more specified Python versions
installed by pyenv. The command attempts to uninstall the given version of
Python, and if the \fB-f\fR or \fB--force\fR option is provided, it removes
the version without asking for confirmation. If the version doesn't exist, it
doesn't display an error message.
.SH OPTIONS
.TP
\fB-f\fR, \fB--force\fR
Uninstall the specified version without prompting for confirmation.
If the version doesn't exist, no error is displayed.
.SH EXAMPLES
To uninstall a specific version of Python:
.EX
\fB$ pyenv uninstall 3.8.5\fR
.EE
To uninstall multiple versions of Python:
.EX
\fB$ pyenv uninstall 3.7.9 3.8.5\fR
.EE
To force the uninstallation of a version without a prompt:
.EX
\fB$ pyenv uninstall --force 3.7.9\fR
.EE
.SH SEE ALSO
.MR pyenv 1 ,
.MR pyenv-versions 1
.SH AUTHORS
Written by Yamashita, Yuu <peek824545201@gmail.com>, Sam Stephenson <sam@sls.name>.
.PP
This manual page was written by Josenison F. da Silva <nilsonfsilva@hotmail.com>
for the Debian project (but may be used by others).
|