pip: add German translation (#6689)

This commit is contained in:
Daniel
2021-10-04 10:00:44 +02:00
committed by GitHub
parent 64ffb2dd96
commit cde6462e4d

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}}`