So I decided to learn django python framework. I started learning this from various resources. This blog is where I can share my knowledge. I will list here all the Django Tutorial step by step.
To learn django we need three tools Python, Django, PIP. I have to check is my all version of these tools are updated or not. Using windows 10 I type command,
How To Check Python Version
python --version
How To Check Django Version
django-admin --version
How To Check PIP Version
pip --version
Now I see all my tools are perfect and ready to work, cause I have downloaded and install recent versions.
If you did not download then Download Python from their official website, you don't need to download pip cause now latest version of python contains pip already.
After download and install of python now open cmd and type command to install django.
pip install Django==3.0.4
Now you are done installing python, pip, django. Let's move on to next tutorial.
To learn django we need three tools Python, Django, PIP. I have to check is my all version of these tools are updated or not. Using windows 10 I type command,
How To Check Python Version
python --version
How To Check Django Version
django-admin --version
How To Check PIP Version
pip --version
Now I see all my tools are perfect and ready to work, cause I have downloaded and install recent versions.
If you did not download then Download Python from their official website, you don't need to download pip cause now latest version of python contains pip already.
After download and install of python now open cmd and type command to install django.
pip install Django==3.0.4
Now you are done installing python, pip, django. Let's move on to next tutorial.
0 Comments