1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 00:35:24 +02:00

pip-install, pip-uninstall: add page and refresh (#7003)

This commit is contained in:
Dhruva Kashyap 2021-10-15 08:30:38 +05:30 committed by GitHub
parent 5df7195d37
commit 748db13803
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 3 deletions

View file

@ -13,12 +13,12 @@
- Install packages listed in a file:
`pip install -r {{requirements.txt}}`
`pip install --requirement {{path/to/requirements.txt}}`
- Install packages from an URL or local file archive (.tar.gz | .whl):
`pip install -f {{url|path/to/file}}`
`pip install --find-links {{url|path/to/file}}`
- Install the local package in the current directory in develop (editable) mode:
`pip install -e .`
`pip install --editable {{.}}`

View file

@ -0,0 +1,16 @@
# pip uninstall
> Uninstall Python packages.
> More information: <https://pip.pypa.io>.
- Uninstall a package:
`pip uninstall {{package_name}}`
- Uninstall packages listed in a specific file:
`pip uninstall --requirement {{path/to/requirements.txt}}`
- Uninstall package without asking for confirmation:
`pip uninstall --yes {{package_name}}`