How to install Django?

How to install Django

Use the command below in the Command Prompt (CMD) to Install Django:

pip install django

How to install a specific version of Django

pip install django==version

For Example, if you want to install Django 4.1.1

pip install django==4.1.1

How to check the Django version?

django-admin --version

You may also like...