Ignore:
Timestamp:
12/09/2022 07:53:16 AM (17 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
xry111/clfs-ng
Children:
f16e611
Parents:
2ef64c4 (diff), 4640b37d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/trunk' into xry111/clfs-ng

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/wheel.xml

    r2ef64c4 r524c5e3  
    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 archives
    132132          </para>
    133133          <indexterm zone="ch-system-wheel">
Note: See TracChangeset for help on using the changeset viewer.