diff --git a/chapter08/wheel.xml b/chapter08/wheel.xml index 5b09fc65b..7ab14426a 100644 --- a/chapter08/wheel.xml +++ b/chapter08/wheel.xml @@ -40,21 +40,21 @@ Installation of Wheel - Compile wheel with the following command: + Compile Wheel with the following command: PYTHONPATH=src pip3 wheel -w dist --no-build-isolation --no-deps $PWD - Install wheel with the following command: + Install Wheel with the following command: pip3 install --no-index --find-links=dist wheel - The meaning of the pip3 commands: + The meaning of the pip3 configuration options and commands: PYTHONPATH=src - Allow using this package (not installed yet) to build a + Allows this package (not installed yet) to build a wheel archive for itself, to avoid a chicken-or-egg problem. @@ -62,14 +62,14 @@ wheel - Build wheel archive for this package. + This command builds the wheel archive for this package. -w dist - Put the created wheels into the + Instructs pip to put the created wheel into the dist directory. @@ -77,7 +77,7 @@ install - Install the package. + This command installs the package. @@ -86,9 +86,9 @@ --no-deps, and --no-index - Prevent pip from fetching files from the online package + These options prevent fetching files from the online package repository (PyPI). If packages are installed in the correct order, - then it won't need to fetch any files in the first place, but these + pip won't need to fetch any files in the first place; these options add some safety in case of user error. @@ -96,7 +96,7 @@ --find-links dist - Search wheel archives from the + Instructs pip to search for wheel archives in the dist directory. @@ -128,7 +128,7 @@ wheel - is an utility to unpack, pack, or convert wheel packages + is a utility to unpack, pack, or convert wheel packages wheel