mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
516 B
Plaintext
26 lines
516 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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}}`
|