summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-15 04:19:16 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-15 04:19:16 +0000
commite004d2a0f78d4a09f32586b6d15028fc5957cd13 (patch)
treec4a82da34c0918174cd0eb9ef176b5016338f262 /docs
parent025b16178f45e31f055e5616752b25c874eeae02 (diff)
Changed docs/tutorial01.txt to be clearer about PYTHONPATH environment variable -- thanks for the suggestion, Ken Kinder
git-svn-id: http://code.djangoproject.com/svn/django/trunk@501 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial01.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index 11d38dfc1a..a5358fa729 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -77,7 +77,10 @@ these settings to match your database's connection parameters:
Now, take a second to make sure ``myproject`` is on your Python path. You
can do this by copying ``myproject`` to Python's ``site-packages`` directory,
or you can do it by altering the ``PYTHONPATH`` environment variable. See the
-`Python path documentation`_ for more information.
+`Python path documentation`_ for more information. If you opt to set the
+``PYTHONPATH`` environment variable, note that you'll need to set it to the
+*parent* directory of ``myproject``. (You can test this by typing
+"import myproject" into the Python interactive prompt.)
Run the following command::