I am trying to add the django-admin.py path to the command line in Windows 7.
I tried to do it as follows:
C:\>set django-admin.py = C:\Python27\Scripts\django-admin.py
But cmd told me that:
'django-admin.py' is not recognized as an internal or external command.
So, how can I add the django-admin.py path to the command line in Windows 7?
I need this because later I do this:
C:\Users\Michael\Desktop\mysite>django-admin.py startproject mysite
Thanks.
source share