pip Cheat Sheet/Install with a version range

Allow a controlled range of versions.

Section: Install and Upgrade

Install with a version range

bash
bash
python -m pip install "requests>=2.31,<3"
Explanation

Common in development workflows where some flexibility is acceptable.

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 Install and Upgrade
Install a specific version
Pin installation to an exact version.
OpenIn sheetbashsame section
Install a package
Install the latest version of a package.
OpenIn sheetbashsame section
Upgrade a package
Upgrade one package to the latest matching version.
OpenIn sheetbashsame section
Upgrade pip itself
Update pip in the active interpreter.
OpenIn sheetbashsame section
Uninstall a package
Remove an installed package.
OpenIn sheetbashsame section
Uninstall without prompt
Remove a package non-interactively.
OpenIn sheetbashsame section