Django

Code

Changeset 6224

Show
Ignore:
Timestamp:
09/14/07 16:48:50 (1 year ago)
Author:
adrian
Message:

Fixed #4245 -- Added documentation about permission error on OS X. Thanks, jacob@gridface.com and ubernostrum and others

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial01.txt

    r6040 r6224  
    4141code, then run the command ``django-admin.py startproject mysite``. This 
    4242will 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``. 
    4353 
    4454.. note::