How to verify Django version
Type the following from the Python interpreter:
“import django; print(django.get_version())”
How to create a Django directory
cd to directory, type following command:
django-admin.py startproject mysite
Describe the directory structure created by” django-admin.py startproject mysite” command