Skip to content

Commit 869a25b

Browse files
authored
pip-install: update page and add Dutch translation (#18333)
1 parent 7f75777 commit 869a25b

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

pages.nl/common/pip-install.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# pip install
2+
3+
> Installeer Python-pakketten.
4+
> Meer informatie: <https://pip.pypa.io/en/stable/cli/pip_install/>.
5+
6+
- Installeer een pakket:
7+
8+
`pip install {{pakket}}`
9+
10+
- Installeer een specifieke versie van een pakket:
11+
12+
`pip install {{pakket}}=={{versie}}`
13+
14+
- Installeer pakketten die in een bestand staan:
15+
16+
`pip install {{[-r|--requirement]}} {{pad/naar/requirements.txt}}`
17+
18+
- Installeer pakketten vanaf een URL of lokaal bestandsarchief (bijv. `.tar.gz` of `.whl`):
19+
20+
`pip install {{[-f|--find-links]}} {{url|pad/naar/bestand}}`
21+
22+
- Installeer het lokale pakket in de huidige map in develop-modus:
23+
24+
`pip install {{[-e|--editable]}} .`

pages/common/pip-install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pip install
22

33
> Install Python packages.
4-
> More information: <https://pip.pypa.io>.
4+
> More information: <https://pip.pypa.io/en/stable/cli/pip_install/>.
55
66
- Install a package:
77

@@ -15,10 +15,10 @@
1515

1616
`pip install {{[-r|--requirement]}} {{path/to/requirements.txt}}`
1717

18-
- Install packages from an URL or local file archive (.tar.gz | .whl):
18+
- Install packages from an URL or local file archive (e.g. `.tar.gz`, `.whl`):
1919

2020
`pip install {{[-f|--find-links]}} {{url|path/to/file}}`
2121

2222
- Install the local package in the current directory in develop (editable) mode:
2323

24-
`pip install {{[-e|--editable]}} {{.}}`
24+
`pip install {{[-e|--editable]}} .`

0 commit comments

Comments
 (0)