Bootstrap common packaging tools in CI.

Section: CI and Automation

Upgrade pip, setuptools, and wheel

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

A common setup step before building or installing packages in automation.

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 CI and Automation
Run without prompts
Disable interactive prompts for automation.
OpenIn sheetbashsame section
Disable version check
Skip pip’s self-update version check.
OpenIn sheetbashsame section
Create venv and install packages
Typical Unix-like local development flow.
OpenIn sheetbash1 tag match
Use pip with Python 3 explicitly
Install a package with a specific interpreter family.
Use pip with a specific Python version
Install into Python 3.11 specifically.
Install requirements into an active venv
Install project dependencies after activation.