mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Use python -m pip install
in porting guide and venv docs (GH-13257)
This is to help prevent people from accidentally installing into the wrong Python interpreter if they are not aware of which Python interpreter `pip` points to.
This commit is contained in:
parent
a0d73a143a
commit
8b2aa1fdde
2 changed files with 17 additions and 11 deletions
|
@ -110,7 +110,7 @@ You can install the latest version of a package by specifying a package's name:
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
(tutorial-env) $ pip install novas
|
||||
(tutorial-env) $ python -m pip install novas
|
||||
Collecting novas
|
||||
Downloading novas-3.1.1.3.tar.gz (136kB)
|
||||
Installing collected packages: novas
|
||||
|
@ -122,7 +122,7 @@ package name followed by ``==`` and the version number:
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
(tutorial-env) $ pip install requests==2.6.0
|
||||
(tutorial-env) $ python -m pip install requests==2.6.0
|
||||
Collecting requests==2.6.0
|
||||
Using cached requests-2.6.0-py2.py3-none-any.whl
|
||||
Installing collected packages: requests
|
||||
|
@ -135,7 +135,7 @@ install --upgrade`` to upgrade the package to the latest version:
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
(tutorial-env) $ pip install --upgrade requests
|
||||
(tutorial-env) $ python -m pip install --upgrade requests
|
||||
Collecting requests
|
||||
Installing collected packages: requests
|
||||
Found existing installation: requests 2.6.0
|
||||
|
@ -193,7 +193,7 @@ necessary packages with ``install -r``:
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
(tutorial-env) $ pip install -r requirements.txt
|
||||
(tutorial-env) $ python -m pip install -r requirements.txt
|
||||
Collecting novas==3.1.1.3 (from -r requirements.txt (line 1))
|
||||
...
|
||||
Collecting numpy==1.9.2 (from -r requirements.txt (line 2))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue