How to set up django-admin.py on windos vista?
- by shin
I manage to install Django after some struggles by using setup.py install on Windows Vista
Now I tried to use django-admin.py but it is not working.
According to this document,
http://docs.djangoproject.com/en/dev/ref/django-admin/
The django-admin.py script should be
on your system path if you installed
Django via its setup.py utility. If
it’s not on your path, ...
For Windows users, who do not have
symlinking functionality available,
you can copy django-admin.py to a
location on your existing path or edit
the PATH settings (under Settings -
Control Panel - System - Advanced -
Environment...) to point to its
installed location.
I checked ComputerpropertiesEnvironment Variables, but path to django-admin.py is not in anywhere.
So I added C:\Python25\Lib\site-packages\django\bin which is the folder of django-admin.py in User variables for shin
Variable PATH, Value C:\Program Files\Google\google_appengine\;C:\Python25\Lib\site-packages\django\bin\
Am I supposed to add to System variables??
But it still does not work.
Could anyone tell me how to add the Path in Environment Variables please?
Thanks in advance.