summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorAngeline Tan <angeline.agilemeister@gmail.com>2012-08-04 15:05:57 -0700
committerJulien Phalip <jphalip@gmail.com>2012-08-04 17:27:57 -0700
commit5d4f993bb1f01c3a79194031827380dc763ce628 (patch)
tree9e1bc3bfc996303a6a870ec529ad58eeabb39200 /docs/intro/tutorial01.txt
parent197863523a7631ae1d11d4fdf49b747a96e011a3 (diff)
Moved a note about django-admin.py errors from Tutorial Part 1 to a new FAQ Troubleshooting page. This is to avoid confusion for beginners.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt10
1 files changed, 2 insertions, 8 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 250c0f1f41..1e2231d1e0 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -52,7 +52,8 @@ code, then run the following command:
django-admin.py startproject mysite
-This will create a ``mysite`` directory in your current directory.
+This will create a ``mysite`` directory in your current directory. If it didn't
+work, see :doc:`Troubleshooting </faq/troubleshooting>`.
.. admonition:: Script name may differ in distribution packages
@@ -78,13 +79,6 @@ This will create a ``mysite`` directory in your current directory.
``django`` (which will conflict with Django itself) or ``test`` (which
conflicts with a built-in Python package).
-:doc:`django-admin.py </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 find
-it in ``site-packages/django/bin``, where ``site-packages`` is a directory
-within your Python installation. Consider symlinking to :doc:`django-admin.py
-</ref/django-admin>` from some place on your path, such as
-:file:`/usr/local/bin`.
-
.. admonition:: Where should this code live?
If your background is in PHP, you're probably used to putting code under the