pip Cheat Sheet/Download without installing

Fetch distributions locally without modifying the environment.

Section: Inspect and Verify

Download without installing

bash
bash
python -m pip download requests -d ./packages
Explanation

Good for offline installs, caching, or artifact prep.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Inspect and Verify
Check dependency health
Report broken or incompatible installed dependencies.
OpenIn sheetbashsame section
Freeze installed packages
Output pinned installed versions.
OpenIn sheetbashsame section
Inspect environment as JSON
Output structured JSON details for the environment.
OpenIn sheetbashsame section
List available versions
Show candidate versions for a package from the index.
OpenIn sheetbashsame section
Install from local wheels only
Disable indexes and use local artifacts.
OpenIn sheetbash1 tag match
Build wheel artifacts
Build wheels into a directory without installing.
OpenIn sheetbash1 tag match