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:
parent
5df7195d37
commit
748db13803
2 changed files with 19 additions and 3 deletions
|
@ -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 {{.}}`
|
||||
|
|
16
pages/common/pip-uninstall.md
Normal file
16
pages/common/pip-uninstall.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue