diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-09-06 10:38:23 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-09-06 10:38:23 (GMT) |
commit | 1d52096d1466ed771c22a2d97e8cae6935fcdf8e (patch) | |
tree | ae7e6b20e148734b3dbab91e4e48ae7a85737712 /Doc/distributing | |
parent | af117ed3d74bf0aa8b75c73155bdd63673133c8f (diff) | |
download | cpython-1d52096d1466ed771c22a2d97e8cae6935fcdf8e.zip cpython-1d52096d1466ed771c22a2d97e8cae6935fcdf8e.tar.gz cpython-1d52096d1466ed771c22a2d97e8cae6935fcdf8e.tar.bz2 |
Issue #22295: Adopt 'python -m pip' as the preferred invocation
Diffstat (limited to 'Doc/distributing')
-rw-r--r-- | Doc/distributing/index.rst | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Doc/distributing/index.rst b/Doc/distributing/index.rst index 4bcb633..9949553 100644 --- a/Doc/distributing/index.rst +++ b/Doc/distributing/index.rst @@ -93,9 +93,18 @@ is important to have standard tools that work consistently, even on older versions of Python. The currently recommended build and distribution tools can be installed -using ``pip``:: +by invoking the ``pip`` module at the command line:: - pip install setuptools wheel twine + python -m pip install setuptools wheel twine + +.. note:: + + For POSIX users (including Mac OS X and Linux users), these instructions + assume the use of a :term:`virtual environment`. + + For Windows users, these instructions assume that the option to + adjust the system PATH environment variable was selected when installing + Python. The Python Packaging User Guide includes more details on the `currently recommended tools`_. |