Changes between Version 7 and Version 8 of DjangoAndNginx


Ignore:
Timestamp:
Jan 17, 2012, 10:28:58 AM (12 years ago)
Author:
nadafigment
Comment:

Removed full path to django-admin.py, author had to include that because used 'python' for executable, unnecessary

Legend:

Unmodified
Added
Removed
Modified
  • DjangoAndNginx

    v7 v8  
    2525
    2626Let's start a sample project just to make things easy:
    27 (Note: for some reason, the PYTHONPATH and PATH variables, although they included the django bin directory, still couldn't find django-admin.py, so I included the full path)
     27(Note: django-admin.py *should be* in your path and executable after a proper install, if this is not the case you may need to fix your installation or environment)
    2828{{{
    2929cd /
    3030mkdir projects
    3131cd projects/
    32 python /usr/lib/python2.5/site-packages/django/bin/django-admin.py startproject sample_project
     32django-admin.py startproject sample_project
    3333}}}
    3434
Back to Top