Python venv Cheat Sheet/Upgrade pip tooling

Upgrade pip and common packaging helpers in the environment.

Section: Daily package workflow

Upgrade pip tooling

bash
bash
python -m pip install --upgrade pip setuptools wheel
Explanation

A common first step after creating a fresh environment.

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 Daily package workflow
Upgrade one package
Upgrade a package to a newer version.
OpenIn sheetbashsame section
Install a package
Install one package in the active environment.
OpenIn sheetbashsame section
Install a pinned version
Install an exact package version.
OpenIn sheetbashsame section
Uninstall a package
Remove a package from the environment.
OpenIn sheetbashsame section
Install current project in editable mode
Develop a local package without reinstalling after every change.
OpenIn sheetbashsame section
Install from requirements file
Install dependencies from a requirements file.
OpenIn sheetbashsame section