@@ -24,9 +24,9 @@ Things pip does:
24
24
backwards compatibility reasons. But thing with setuptools:
25
25
has a ``setup.py `` file that it invokes to …… get info?
26
26
27
- 2. Decides where to install stuff. Once the package is built, resulting
28
- artifact is then installed into system in appropriate place. :pep: `517 `
29
- defines interface between build backend & installer.
27
+ 2. Decides where to install stuff. Once the package is built, the resulting
28
+ artifact is then installed to the system in its appropriate place. :pep: `517 `
29
+ defines the interface between the build backend & installer.
30
30
31
31
Broad overview of flow
32
32
======================
@@ -111,24 +111,24 @@ The package index gives pip a list of files for that package (via the existing P
111
111
112
112
pip chooses from the list a single file to download.
113
113
114
- It may go back and choose another file to download
114
+ It may go back and choose another file to download.
115
115
116
116
When pip looks at the package index, the place where it looks has
117
- basically a link. The link’s text is the name of the file
117
+ basically a link. The link’s text is the name of the file.
118
118
119
119
This is the `PyPI Simple API `_ (PyPI has several APIs, some are being
120
120
deprecated). pip looks at Simple API, documented initially at :pep: `503 ` --
121
121
packaging.python.org has PyPA specifications with more details for
122
- Simple Repository API
122
+ Simple Repository API.
123
123
124
- For this package name -- this is the list of files available
124
+ For this package name -- this is the list of files available.
125
125
126
126
Looks there for:
127
127
128
128
* The list of filenames
129
129
* Other info
130
130
131
- Once it has those, selects one file, downloads it
131
+ Once it has those, it selects one file and downloads it.
132
132
133
133
(Question: If I want to ``pip install flask ``, I think the whole list of filenames
134
134
cannot….should not be …. ? I want only the Flask …. Why am I getting the
0 commit comments