Refs #30948 -- Updated install instructions to use pip instead of setup.py.

Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
This commit is contained in:
Jon Dufresne 2019-11-07 15:51:02 +01:00 committed by Mariusz Felisiak
parent a32f983be8
commit eee4da3b57
3 changed files with 6 additions and 8 deletions

View File

@ -3,8 +3,6 @@ Thanks for downloading Django.
To install it, make sure you have Python 3.6 or greater installed. Then run To install it, make sure you have Python 3.6 or greater installed. Then run
this command from the command prompt: this command from the command prompt:
python setup.py install python -m pip install .
If you're upgrading from a previous version, you need to remove it first.
For more detailed instructions, see docs/intro/install.txt. For more detailed instructions, see docs/intro/install.txt.

View File

@ -14,9 +14,9 @@ Problems running ``django-admin``
----------------------------------- -----------------------------------
:doc:`django-admin </ref/django-admin>` should be on your system path if you :doc:`django-admin </ref/django-admin>` should be on your system path if you
installed Django via ``python setup.py``. If it's not on your path, you can installed Django via ``pip``. If it's not on your path, you can find it in
find it in ``site-packages/django/bin``, where ``site-packages`` is a directory ``site-packages/django/bin``, where ``site-packages`` is a directory within
within your Python installation. Consider symlinking to :doc:`django-admin your Python installation. Consider symlinking to :doc:`django-admin
</ref/django-admin>` from some place on your path, such as </ref/django-admin>` from some place on your path, such as
:file:`/usr/local/bin`. :file:`/usr/local/bin`.

View File

@ -11,8 +11,8 @@ does the same thing as ``django-admin`` but also sets the
project's ``settings.py`` file. project's ``settings.py`` file.
The ``django-admin`` script should be on your system path if you installed The ``django-admin`` script should be on your system path if you installed
Django via its ``setup.py`` utility. If it's not on your path, you can find it Django via ``pip``. If it's not on your path, you can find it in
in ``site-packages/django/bin`` within your Python installation. Consider ``site-packages/django/bin`` within your Python installation. Consider
symlinking it from some place on your path, such as ``/usr/local/bin``. symlinking it from some place on your path, such as ``/usr/local/bin``.
For Windows users, who do not have symlinking functionality available, you can For Windows users, who do not have symlinking functionality available, you can