2020-12-30 13:25:03 +00:00
|
|
|
# pip install
|
|
|
|
|
|
|
|
> Install Python packages.
|
|
|
|
> More information: <https://pip.pypa.io>.
|
|
|
|
|
|
|
|
- Install a package:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pip install {{package}}`
|
2020-12-30 13:25:03 +00:00
|
|
|
|
|
|
|
- Install a specific version of a package:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pip install {{package}}=={{version}}`
|
2020-12-30 13:25:03 +00:00
|
|
|
|
|
|
|
- Install packages listed in a file:
|
|
|
|
|
2023-12-27 06:22:49 +00:00
|
|
|
`pip install -r {{path/to/requirements.txt}}`
|
2020-12-30 13:25:03 +00:00
|
|
|
|
2021-09-01 18:22:20 +01:00
|
|
|
- Install packages from an URL or local file archive (.tar.gz | .whl):
|
|
|
|
|
2021-10-15 04:00:38 +01:00
|
|
|
`pip install --find-links {{url|path/to/file}}`
|
2021-09-01 18:22:20 +01:00
|
|
|
|
2020-12-30 13:25:03 +00:00
|
|
|
- Install the local package in the current directory in develop (editable) mode:
|
|
|
|
|
2021-10-15 04:00:38 +01:00
|
|
|
`pip install --editable {{.}}`
|