Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions source/tutorials/installing-packages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ If that still doesn't allow you to run ``python -m pip``:
<https://bootstrap.pypa.io/get-pip.py>`_ [1]_

* Run ``python get-pip.py``. [2]_ This will install or upgrade pip.
Additionally, it will install :ref:`setuptools` and :ref:`wheel` if they're
Additionally, it may install :ref:`setuptools` and :ref:`wheel` if they're
not installed already.

.. warning::
Expand All @@ -150,24 +150,23 @@ If that still doesn't allow you to run ``python -m pip``:
software.


Ensure pip, setuptools, and wheel are up to date
------------------------------------------------
Ensure pip is up to date
------------------------

While ``pip`` alone is sufficient to install from pre-built binary archives,
up to date copies of the ``setuptools`` and ``wheel`` projects are useful
to ensure you can also install from source archives:
Make sure you have the latest features and fixes, and support for the latest
Python packaging specifications.

.. tab:: Unix/macOS

.. code-block:: bash

python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install --upgrade pip

.. tab:: Windows

.. code-block:: bat

py -m pip install --upgrade pip setuptools wheel
py -m pip install --upgrade pip

Optionally, create a virtual environment
----------------------------------------
Expand Down
Loading