according to the official tutorial I need to type the following to the cmd in the directory where I want to create my project.:
django-admin.py startproject mysite
I created a folder named "site" on my desktop, cd into it and typed the obove command. Nothing appeared in "site". Instead, Python authomatically opened with the following:
#!C:\Python27\python.exe
from django.core import management
if __name__ == "__main__":
management.execute_from_command_line()
Do you know what's going on?