1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Switch to running src/pip now #5481 is merged

This commit is contained in:
Florian Rathgeber 2018-10-28 14:22:59 +00:00
parent afe41d4c07
commit 044fdda942

View file

@ -21,26 +21,11 @@ Running pip From Source Tree
----------------------------
To run the pip executable from your source tree using the currently active
virtualenv (or conda environment) during development, run from a ``tox``
environment, after having run the tests at least once:
virtualenv during development, run pip from the ``src`` directory:
.. code-block:: console
$ .tox/py36/bin/pip --version
.. note::
You need to do run ``tox -e py36 --recreate`` after any changes to your
virtualenv if using pip like this.
.. note::
You can use any other tox environment instead of ``py36``.
.. note::
``tox -e py36 --notest`` can be used, if running tests is not a concern.
.. note::
An easier alternative is running ``python src/pip``, however there are
`edge cases <https://github.com/pypa/pip/pull/5841>`_ that may not work.
$ python src/pip --version
Running Tests
-------------