1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

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

@@ -1045,9 +1045,9 @@ When installing Django 1.9 or 1.9.1 with setuptools 5.5.x, you'll see::
It's safe to ignore these errors (Django will still install just fine), but you
can avoid them by upgrading setuptools to a more recent version. If you're
using pip, you can upgrade pip using ``pip install -U pip`` which will also
upgrade setuptools. This is resolved in later versions of Django as described
in the :doc:`/releases/1.9.2`.
using pip, you can upgrade pip using ``python -m pip install -U pip`` which
will also upgrade setuptools. This is resolved in later versions of Django as
described in the :doc:`/releases/1.9.2`.
Miscellaneous
-------------