Fixed #30367 -- Changed "pip install" to "python -m pip install" in docs, comments and hints.

This commit is contained in:
Ramiro Morales 2019-04-14 12:02:36 -03:00 committed by Mariusz Felisiak
parent ceab25bc6d
commit aed89adad5
26 changed files with 49 additions and 47 deletions

View file

@ -12,7 +12,7 @@ dependencies and is easy to install and use.
Installing Gunicorn
===================
Installing gunicorn is as easy as ``pip install gunicorn``. For more
Installing gunicorn is as easy as ``python -m pip install gunicorn``. For more
details, see the `gunicorn documentation`_.
.. _gunicorn documentation: https://docs.gunicorn.org/en/latest/install.html

View file

@ -27,10 +27,10 @@ command. For example:
.. code-block:: console
# Install current stable version.
$ pip install uwsgi
$ python -m pip install uwsgi
# Or install LTS (long term support).
$ pip install https://projects.unbit.it/downloads/uwsgi-lts.tar.gz
$ python -m pip install https://projects.unbit.it/downloads/uwsgi-lts.tar.gz
.. _installation procedures: https://uwsgi-docs.readthedocs.io/en/latest/Install.html