Changeset 4618
- Timestamp:
- 02/26/07 14:51:21 (2 years ago)
- Files:
-
- django/trunk/docs/tutorial01.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial01.txt
r4595 r4618 41 41 code, then run the command ``django-admin.py startproject mysite``. This 42 42 will create a ``mysite`` directory in your current directory. 43 44 .. note:: 45 46 You'll need to avoid naming projects after built-in Python or Django 47 components. In particular, this means you should avoid using names like 48 ``django`` (which will conflict with Django itself) or ``site`` (which 49 conflicts with a built-in Python package). 43 50 44 51 (``django-admin.py`` should be on your system path if you installed Django via
