@@ -745,10 +745,10 @@ poetry python install <PYTHON_VERSION>
745745
746746#### Options
747747
748- * ` --clean ` : Clean up installation if check fails.
749- * ` --free-threaded ` : Use free-threaded version if available.
750- * ` --implementation ` : Python implementation to use. (cpython, pypy)
751- * ` --reinstall ` : Reinstall if installation already exists.
748+ * ` --clean (-c) ` : Clean up installation if check fails.
749+ * ` --free-threaded (-t) ` : Use free-threaded version if available. (Same as requesting a version with trailing "t".)
750+ * ` --implementation (-i) ` : Python implementation to use. (cpython, pypy)
751+ * ` --reinstall (-r) ` : Reinstall if installation already exists.
752752
753753### python list
754754
@@ -759,9 +759,10 @@ discovered System managed and Poetry managed installations.
759759poetry python list
760760```
761761#### Options
762- * ` --all ` : List all versions, including those available for download.
763- * ` --implementation ` : Python implementation to search for.
764- * ` --managed ` : List only Poetry managed Python versions.
762+ * ` --all (-a) ` : List all versions, including those available for download.
763+ * ` --free-threaded (-t) ` : List only free-threaded Python versions.
764+ * ` --implementation (-i) ` : Python implementation to search for.
765+ * ` --managed (-m) ` : List only Poetry managed Python versions.
765766
766767### python remove
767768
@@ -773,7 +774,8 @@ poetry python remove <PYTHON_VERSION>
773774
774775#### Options
775776
776- * ` --implementation ` : Python implementation to use. (cpython, pypy)
777+ * ` --free-threaded (-t) ` : Remove free-threaded version (Same as requesting a version with trailing "t".)
778+ * ` --implementation (-i) ` : Python implementation to remove. (cpython, pypy)
777779
778780## remove
779781
0 commit comments