From e004d2a0f78d4a09f32586b6d15028fc5957cd13 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 15 Aug 2005 04:19:16 +0000 Subject: [PATCH] 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 --- docs/tutorial01.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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::