Check django installed or not
py -m django — version
Create new project
django-admin startproject myproject
Run development server
py manage.py runserver
Each application you write in Django consists of a Python package that follows a certain convention. Django comes with a utility that automatically generates the basic directory structure of an app, so you can focus on writing code rather than creating directories.
To create your app, make sure you’re in the same directory as manage.py
and type this command:
py manage.py startapp myapp
Now can start to program django web!