Django Day 1

Install Django using Windows PowerShell.

Siddhant"Wang"
1 min readMar 23, 2023
Photo by Faisal on Unsplash

Welcome to Django Day 1!

Today we’ll be going over how to install Django on Windows PowerShell. Before we begin, it’s important to ensure that you have Python installed with the latest version. Once you’ve confirmed this, we can proceed with the installation process.

Step 1:Installing Django

To install Django, simply right-click on the Windows start button and select Windows PowerShell. Then, type in the command “pip install django”.

pip install django

It’s important to note that if you’re unsure about how multiple Python versions may affect your code, it’s best to have only one version installed on your system.

Step 2: Checking the Version

To verify that Django has been installed successfully, you can use the command “python -m django — version” to check the version of Django that you have installed.

python -m django - version

Now that we’ve completed the installation process, I’ll be using VScode as my code editor for this tutorial, but you can also use PyCharm if you prefer. That’s all for now, but be sure to subscribe for more upcoming tutorials. Thanks for reading!

I am following codewithharrys youtube video for learning django click here for the link

--

--