Tuesday, January 12, 2021

How to install Django - The Web Application Framework in Python

Hi,

In this post I am going to talk about how to install Django framework.

The below table would describe the details of software required to install the framework as prerequisite.

At the time of writing, the version that you find under prerequisites was in use, the details discussed would remain same for the future versions as well...

Prerequisites
SoftwareVersion
Python3.9.1

To check whether Django is already installed or not, you can make use of the following command

$ python -m django --version

if Django framework is already installed, the above command would return the version of the framework else it would return the error message stating "No module named django".

Assuming we have not yet installed the framework, use the following command to install the same.

$ python -m pip install Django

Well that is it, we have successfully installed Django framework. Hope you had great time reading.

Thanks.

No comments:

Post a Comment

How to change the root password in linux when it is forgotten/to change

This blog is all about changing the root password of the Linux system when it is forgotten or to reset the password...   Let's get it ...