Fix missing footnote error

This commit is contained in:
Pradyun S. Gedam 2017-05-16 23:48:27 +05:30
parent e2ff5dcc8c
commit fc98e0b524
1 changed files with 8 additions and 11 deletions

View File

@ -21,7 +21,7 @@ Installing with get-pip.py
--------------------------
To install pip, securely download `get-pip.py
<https://bootstrap.pypa.io/get-pip.py>`_. [2]_
<https://bootstrap.pypa.io/get-pip.py>`_. [1]_
Then run the following:
@ -36,7 +36,7 @@ Then run the following:
system or another package manager. get-pip.py does not coordinate with
those tools, and may leave your system in an inconsistent state.
get-pip.py will also install :ref:`pypug:setuptools` [3]_ and :ref:`pypug:wheel`,
get-pip.py will also install :ref:`pypug:setuptools` [2]_ and :ref:`pypug:wheel`,
if they're not already. :ref:`pypug:setuptools` is required to install
:term:`source distributions <pypug:Source Distribution (or "sdist")>`. Both are
required to be able to build a :ref:`Wheel cache` (which improves installation
@ -70,7 +70,7 @@ Install from local copies of pip and setuptools::
python get-pip.py --no-index --find-links=/local/copies
Install to the user site [4]_::
Install to the user site [3]_::
python get-pip.py --user
@ -98,7 +98,7 @@ On Linux or macOS:
pip install -U pip
On Windows [5]_:
On Windows [4]_:
::
@ -118,20 +118,17 @@ pip works on Unix/Linux, macOS, and Windows.
----
.. [1] For Python 2, see https://docs.python.org/2/installing, and for Python3,
see https://docs.python.org/3/installing.
.. [2] "Secure" in this context means using a modern browser or a
.. [1] "Secure" in this context means using a modern browser or a
tool like `curl` that verifies SSL certificates when downloading from
https URLs.
.. [3] Beginning with pip v1.5.1, ``get-pip.py`` stopped requiring setuptools to
.. [2] Beginning with pip v1.5.1, ``get-pip.py`` stopped requiring setuptools to
be installed first.
.. [4] The pip developers are considering making ``--user`` the default for all
.. [3] The pip developers are considering making ``--user`` the default for all
installs, including ``get-pip.py`` installs of pip, but at this time,
``--user`` installs for pip itself, should not be considered to be fully
tested or endorsed. For discussion, see `Issue 1668
<https://github.com/pypa/pip/issues/1668>`_.
.. [5] https://github.com/pypa/pip/issues/1299
.. [4] https://github.com/pypa/pip/issues/1299