How to set up django-admin.py on windows vista?

Posted by shin on Stack Overflow See other posts from Stack Overflow or by shin
Published on 2010-05-25T12:46:16Z Indexed on 2010/05/25 13:41 UTC
Read the original article Hit count: 256

Filed under:
|
|

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 Computer>properties>Environment 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.

© Stack Overflow or respective owner

Related posts about Windows

Related posts about django