django setup code example

Example 1: installing django

#please check the python version
python -m pip install Django

Example 2: install django

pip install Django

Example 3: starting server in django

# to start a django server cd to dir with manage.py file and type following
python manage.py runserver

Example 4: create new django project

django-admin startproject mysite

Example 5: how to 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 6: django setup in windows

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