pip: add German translation (#6689)

beep
Daniel 2021-10-04 10:00:44 +02:00 committed by GitHub
parent 64ffb2dd96
commit cde6462e4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
pages.de/common/pip.md Normal file
View 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}}`