summaryrefslogtreecommitdiff
path: root/docs/topics/install.txt
diff options
context:
space:
mode:
authorChristoph Heer <Christoph.Heer@gmail.com>2014-07-26 13:21:52 +0200
committerTim Graham <timograham@gmail.com>2014-07-30 14:14:03 -0400
commitd47409831fbd44739d261c32c53a094748028e4f (patch)
tree84f025048c363cfc714399c87f7b9bd2f916e5e8 /docs/topics/install.txt
parent66630f589cd641efe91f111919ad5059b8a01a88 (diff)
Fixed #23067 -- Updated docs to use django-admin
Diffstat (limited to 'docs/topics/install.txt')
-rw-r--r--docs/topics/install.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/topics/install.txt b/docs/topics/install.txt
index 53d9cc3263..f3565821b0 100644
--- a/docs/topics/install.txt
+++ b/docs/topics/install.txt
@@ -284,7 +284,7 @@ latest bug fixes and improvements, follow these instructions:
(If using a virtualenv_ you can omit ``sudo``.)
This will make Django's code importable, and will also make the
- ``django-admin.py`` utility command available. In other words, you're all
+ ``django-admin`` utility command available. In other words, you're all
set!
If you don't have pip_ available, see the alternative instructions for
@@ -343,7 +343,7 @@ Next you need to make the ``django-admin.py`` utility available in your
shell PATH.
On Unix-like systems, create a symbolic link to the file
-``django-trunk/django/bin/django-admin.py`` in a directory on your system
+``django-trunk/django/bin/django-admin`` in a directory on your system
path, such as ``/usr/local/bin``. For example:
.. code-block:: bash
@@ -359,3 +359,7 @@ rather than having to qualify the command with the full path to the file.
On Windows systems, the same result can be achieved by copying the file
``django-trunk/django/bin/django-admin.py`` to somewhere on your system
path, for example ``C:\Python27\Scripts``.
+
+Note that the rest of the documentation assumes this utility is installed
+as ``django-admin``. You'll have to substitute ``django-admin.py`` if you use
+this method.