Django Installation Step by Step

It is suggested to have a dedicated virtual environment for each Django project.For the installation step first we have to create a folder in our PC/Laptop. You can give any name for your folder.

Here we are using folder name : Django101

Screenshot_353.png

Then we will go to the path of the folder:

Screenshot_354.png

Here we will type “cmd” & it will open up terminal of your PC

In the terminal First we have to create a Virtual Environment.I am giving you the command step by step:

py -m venv myapp

After run this command you will see a folder in your Django101 file named myapp

Screenshot_356.png

Then you have to run a command:

myapp\\Scripts\\activate