Ticket #4245: 4245.diff
File 4245.diff, 905 bytes (added by , 17 years ago) |
---|
-
tutorial01.txt
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 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``. 53 44 54 .. note:: 45 55 46 56 You'll need to avoid naming projects after built-in Python or Django