Ticket #5626: 5626.diff

File 5626.diff, 961 bytes (added by Matt Boersma, 17 years ago)

Fixes typo, shortens command to make django-admin.py executable

  • docs/tutorial01.txt

     
    4141code, then run the command ``django-admin.py startproject mysite``. This
    4242will create a ``mysite`` directory in your current directory.
    4343
    44 .. admonition:: Max OS X permissions
    45    
     44.. admonition:: Mac OS X permissions
     45
    4646   If you're using Mac OS X, you may see the message "permission
    4747   denied" when you try to run ``django-admin.py startproject``. This
    4848   is because, on Unix-based systems like OS X, a file must be marked
    4949   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```.
    5352
    5453.. note::
    5554
Back to Top