Changeset 6224
- Timestamp:
- 09/14/07 16:48:50 (1 year ago)
- Files:
-
- django/trunk/docs/tutorial01.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial01.txt
r6040 r6224 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 .. admonition:: Max OS X permissions 45 46 If you're using Mac OS X, you may see the message "permission 47 denied" when you try to run ``django-admin.py startproject``. This 48 is because, on Unix-based systems like OS X, a file must be marked 49 as "exceutable" before it can be run as a program. To do this, open 50 Terminal.app and navigate (using the `cd` command) to the directory 51 where ``django-admin.py`` is installed, then run the command 52 ``chmod +x django-admin.py``. 43 53 44 54 .. note::
