mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
67bab4f54a
* 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>
423 B
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}}