mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 23:06:02 +02:00
pip: add German translation (#6689)
This commit is contained in:
parent
64ffb2dd96
commit
cde6462e4d
1 changed files with 25 additions and 0 deletions
25
pages.de/common/pip.md
Normal file
25
pages.de/common/pip.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# pip
|
||||
|
||||
> Python package manager.
|
||||
> Einige Unterbefehle wie `pip install` sind separat dokumentiert.
|
||||
> Weitere Informationen: <https://pip.pypa.io>.
|
||||
|
||||
- Installiere ein Paket (siehe `pip install` für weitere Beispiele):
|
||||
|
||||
`pip install {{paketname}}`
|
||||
|
||||
- Aktualisiere ein Paket:
|
||||
|
||||
`pip install -U {{paketname}}`
|
||||
|
||||
- Deinstalliere ein Paket:
|
||||
|
||||
`pip uninstall {{paketname}}`
|
||||
|
||||
- Speichere eine Liste aller installierten Pakete in eine Datei:
|
||||
|
||||
`pip freeze > {{requirements.txt}}`
|
||||
|
||||
- Zeige Informationen über ein installiertes Paket an:
|
||||
|
||||
`pip show {{paketname}}`
|
Loading…
Add table
Reference in a new issue