Ticket #5626: 5626.diff
File 5626.diff, 961 bytes (added by , 17 years ago) |
---|
-
docs/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:: Ma xOS X permissions45 44 .. admonition:: Mac OS X permissions 45 46 46 If you're using Mac OS X, you may see the message "permission 47 47 denied" when you try to run ``django-admin.py startproject``. This 48 48 is because, on Unix-based systems like OS X, a file must be marked 49 49 as "executable" 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``. 50 Terminal.app and run the command 51 ``chmod +x `which django-admin.py```. 53 52 54 53 .. note:: 55 54