is a web framework for perfectionists with deadlines.Using it you can create many cool projects. It was designed to make common web development tasks fast and easy. Django In this article we gonna learn how to create a project in Django.It's so easy like a piece of cake to create a project in Django. We must have Django installed in our system.Use below commands to install it: pip install django In order to see the version of Django type Python from your shell.Then at the python prompt ,try to import Django like this: >> django >> print(django.get_version()) import 2.2 Django is installed,now Finally we can create the project. Create a new directory in which we will place our Django project. mkdir DjangoFolder cd DjangoFolder will create a new directory by name and is used to move inside that folder using shell. mkdir DjangoFolder cd Now in shell type the following magical words: django-admin startproject Project and it will create a Django project by name inside the directory. The is the name of project we created,you can use any other name as you like. BOOM, Project DjangoFolder Project The DjangoFolder directory structure will look something like this: I told you, it's just a piece of cake to create project in Django,don't be afraid to read of Django. More informations are available in the docs. official documentations Use command to move inside the directory,remember you are currently in we have to move inside Project directory to run the server. cd Project DjangoFolder, cd Project Now use the following commands in order to run the server: python manage.py runserver Go to in the browser,here you will see a cool animation of rocket flying. Something like below picture: localhost:8000/ Thanks for your valuable time,i appreciate your effort,keep learning and never stop. Feel free to place your doubts or comments. ThankYou.