2025-03-14 21:59:59 -06:00
|
|
|
# pip install
|
|
|
|
|
|
|
|
|
|
> Install Python packages.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://pip.pypa.io/en/stable/cli/pip_install/>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- Install one or more packages:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`pip install {{package1 package2 ...}}`
|
|
|
|
|
|
|
|
|
|
- Upgrade all specified packages to the latest version, installing any that are not already present:
|
|
|
|
|
|
|
|
|
|
`pip install {{package1 package2 ...}} {{[-U|--upgrade]}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Install a specific version of a package:
|
|
|
|
|
|
|
|
|
|
`pip install {{package}}=={{version}}`
|
|
|
|
|
|
|
|
|
|
- Install packages listed in a file:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`pip install {{[-r|--requirement]}} {{path/to/requirements.txt}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- Install a package from a local archive or directory:
|
|
|
|
|
|
|
|
|
|
`pip install {{path/to/file.whl|path/to/file.tar.gz|path/to/directory}}`
|
|
|
|
|
|
|
|
|
|
- Install a package from a Git repository:
|
|
|
|
|
|
|
|
|
|
`pip install git+https://{{example.com}}/{{user}}/{{repository}}.git`
|
|
|
|
|
|
|
|
|
|
- Install a package from an alternative source (URL or directory) instead of PyPI:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`pip install {{[-f|--find-links]}} {{url|path/to/directory}} {{package}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Install the local package in the current directory in develop (editable) mode:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`pip install {{[-e|--editable]}} .`
|