Files
tldr/pages/common/pip-cache.md
T
Abhay Mittal 67bab4f54a pip-cache : add page (#18356)
* Create pip-cache.md

* Update pip-cache.md

* Update pages/common/pip-cache.md

Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>

---------

Co-authored-by: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com>
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
2025-10-03 22:51:07 -07:00

423 B

pip cache

Inspect and manage pip's wheel cache. More information: https://pip.pypa.io/en/stable/cli/pip_cache/.

  • Show the location of the pip cache directory:

pip cache dir

  • List filenames of all packages currently stored in the cache:

pip cache list

  • Remove all files from the pip cache:

pip cache purge

  • Remove cached files matching a specific package name:

pip cache remove {{package_name}}