command to install django code example
Example 1: installing django
#please check the python version
python -m pip install Django
Example 2: install django
$ python -m pip install Django
Example 3: 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 4: django install
...\> py --version