1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 11:35:33 +02:00

pip-install: add German translation (#6691)

This commit is contained in:
Daniel 2021-10-03 22:35:01 +02:00 committed by GitHub
parent 67f5281019
commit a21d8ebe6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,24 @@
# pip install
> Installiere Python-Pakete.
> Weitere Informationen: <https://pip.pypa.io>.
- Installiere ein Paket:
`pip install {{paketname}}`
- Installiere eine spezifische Paketversion:
`pip install {{paketname}}=={{paketversion}}`
- Installiere die Pakete aus einer Datei:
`pip install -r {{requirements.txt}}`
- Installiere die Pakete von einer URL oder einem lokalen Archiv (.tar.gz | .whl):
`pip install -f {{url|pfad/zur/datei}}`
- Installiere das lokale Paket im aktuellen Verzeichnis im Entwicklungs-/Bearbeitungsmodus:
`pip install -e .`