start django windows code example

Example 1: install django

pip install django # Install Django Packages
django-admin startproject project_name # Create a Project
cd project_name
python manage.py makemigrations # Create new migrations
python manage.py migrate # Apply Migrations
python manage.py createsuperuser # Create User for admin
python manage.py runserver # Start Server

python manage.py startapp sub_module # Create a sub app

Example 2: django setup in windows

...\> py -m pip install virtualenvwrapper-win

Example 3: django setup in windows

...\> py -m pip install Django

Example 4: start django project in windows

pip install django
django-admin.py startproject PROJECT