Ignore:
Timestamp:
12/08/2022 09:13:28 PM (17 months ago)
Author:
David Bryant <davidbryant@…>
Branches:
11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, bdubbs/gcc13, multilib, renodr/libudev-from-systemd, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/update-glibc
Children:
a3ebe8a, efd2835
Parents:
8e751f7
Message:

Capitalized references to the package. Clarified the descriptions of
pip3 -- the pip program processes both commands (e.g., install) and
options (e.g., --no-index). Expressed option / command descriptions
in the iindicative mood. The imperative mood should only be used to
tell the reader what to do, not in explanatory verbiage. Inserted
the definite article here and there. Corrected a misspelled instance
of the indefinite article: we don't say "an utility" because the
initial phoneme in "utility" is pronounced as YOO.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/wheel.xml

    r8e751f7 rd988306  
    4141    <title>Installation of Wheel</title>
    4242
    43     <para>Compile wheel with the following command:</para>
     43    <para>Compile Wheel with the following command:</para>
    4444
    4545<screen><userinput remap="make">PYTHONPATH=src pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
    4646
    47     <para>Install wheel with the following command:</para>
     47    <para>Install Wheel with the following command:</para>
    4848
    4949<screen><userinput remap="install">pip3 install --no-index --find-links=dist wheel</userinput></screen>
    5050
    5151    <variablelist>
    52       <title>The meaning of the pip3 commands:</title>
     52      <title>The meaning of the pip3 configuration options and commands:</title>
    5353
    5454      <varlistentry>
    5555        <term><envar>PYTHONPATH=src</envar></term>
    5656        <listitem>
    57            <para>Allow using this package (not installed yet) to build a
     57           <para>Allows this package (not installed yet) to build a
    5858           wheel archive for itself, to avoid a chicken-or-egg problem.</para>
    5959        </listitem>
     
    6363        <term><command>wheel</command></term>
    6464        <listitem>
    65            <para>Build wheel archive for this package.</para>
     65           <para>This command builds the wheel archive for this package.</para>
    6666        </listitem>
    6767      </varlistentry>
     
    7070        <term><parameter>-w dist</parameter></term>
    7171        <listitem>
    72            <para>Put the created wheels into the
     72           <para>Instructs pip to put the created wheel into the
    7373           <filename class='directory'>dist</filename> directory.</para>
    7474        </listitem>
     
    7878        <term><command>install</command></term>
    7979        <listitem>
    80            <para>Install the package.</para>
     80           <para>This command installs the package.</para>
    8181        </listitem>
    8282      </varlistentry>
     
    8787              <parameter>--no-index</parameter></term>
    8888        <listitem>
    89           <para>Prevent pip from fetching files from the online package
     89          <para>These options prevent fetching files from the online package
    9090          repository (PyPI). If packages are installed in the correct order,
    91           then it won't need to fetch any files in the first place, but these
     91          pip won't need to fetch any files in the first place; these
    9292          options add some safety in case of user error.</para>
    9393        </listitem>
     
    9797        <term><parameter>--find-links dist</parameter></term>
    9898        <listitem>
    99            <para>Search wheel archives from the
     99           <para>Instructs pip to search for wheel archives in the
    100100           <filename class='directory'>dist</filename> directory.</para>
    101101        </listitem>
     
    129129        <listitem>
    130130          <para>
    131             is an utility to unpack, pack, or convert wheel packages
     131            is a utility to unpack, pack, or convert wheel packages
    132132          </para>
    133133          <indexterm zone="ch-system-wheel">
Note: See TracChangeset for help on using the changeset viewer.