File tree Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Original file line number Diff line number Diff line change
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]}} . `
Original file line number Diff line number Diff line change 1
1
# pip install
2
2
3
3
> Install Python packages.
4
- > More information: < https://pip.pypa.io > .
4
+ > More information: < https://pip.pypa.io/en/stable/cli/pip_install/ > .
5
5
6
6
- Install a package:
7
7
15
15
16
16
` pip install {{[-r|--requirement]}} {{path/to/requirements.txt}} `
17
17
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 ` ):
19
19
20
20
` pip install {{[-f|--find-links]}} {{url|path/to/file}} `
21
21
22
22
- Install the local package in the current directory in develop (editable) mode:
23
23
24
- ` pip install {{[-e|--editable]}} {{.}} `
24
+ ` pip install {{[-e|--editable]}} . `
You can’t perform that action at this time.
0 commit comments