mirror of
https://github.com/django/django.git
synced 2025-08-31 07:47:37 +00:00
Fixed #30367 -- Changed "pip install" to "python -m pip install" in docs, comments and hints.
This commit is contained in:
parent
ceab25bc6d
commit
aed89adad5
26 changed files with 49 additions and 47 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue