diff options
Diffstat (limited to 'chapter08/wheel.xml')
-rw-r--r-- | chapter08/wheel.xml | 22 |
1 files changed, 11 insertions, 11 deletions
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 @@ <sect2 role="installation"> <title>Installation of Wheel</title> - <para>Compile wheel with the following command:</para> + <para>Compile Wheel with the following command:</para> <screen><userinput remap="make">PYTHONPATH=src pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen> - <para>Install wheel with the following command:</para> + <para>Install Wheel with the following command:</para> <screen><userinput remap="install">pip3 install --no-index --find-links=dist wheel</userinput></screen> <variablelist> - <title>The meaning of the pip3 commands:</title> + <title>The meaning of the pip3 configuration options and commands:</title> <varlistentry> <term><envar>PYTHONPATH=src</envar></term> <listitem> - <para>Allow using this package (not installed yet) to build a + <para>Allows this package (not installed yet) to build a wheel archive for itself, to avoid a chicken-or-egg problem.</para> </listitem> </varlistentry> @@ -62,14 +62,14 @@ <varlistentry> <term><command>wheel</command></term> <listitem> - <para>Build wheel archive for this package.</para> + <para>This command builds the wheel archive for this package.</para> </listitem> </varlistentry> <varlistentry> <term><parameter>-w dist</parameter></term> <listitem> - <para>Put the created wheels into the + <para>Instructs pip to put the created wheel into the <filename class='directory'>dist</filename> directory.</para> </listitem> </varlistentry> @@ -77,7 +77,7 @@ <varlistentry> <term><command>install</command></term> <listitem> - <para>Install the package.</para> + <para>This command installs the package.</para> </listitem> </varlistentry> @@ -86,9 +86,9 @@ <parameter>--no-deps</parameter>, and <parameter>--no-index</parameter></term> <listitem> - <para>Prevent pip from fetching files from the online package + <para>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.</para> </listitem> </varlistentry> @@ -96,7 +96,7 @@ <varlistentry> <term><parameter>--find-links dist</parameter></term> <listitem> - <para>Search wheel archives from the + <para>Instructs pip to search for wheel archives in the <filename class='directory'>dist</filename> directory.</para> </listitem> </varlistentry> @@ -128,7 +128,7 @@ <term><command>wheel</command></term> <listitem> <para> - is an utility to unpack, pack, or convert wheel packages + is a utility to unpack, pack, or convert wheel packages </para> <indexterm zone="ch-system-wheel"> <primary sortas="b-wheel">wheel</primary> |