Starting Django Computer Engineering Django by Ravinder Nath Rajotiya - December 29, 20210 Checking if Django is installed and working: Type the following on the command prompt to check whether Django is installed or not C:\Users\ECE>django-admin C:\Users\ECE>'django-admin' is not recognized as an internal or external command, operable program or batch file. It simply is an indication that Django is not installed on your systems. So first of all create a python virtual environment so that you can install Django and start working on the Django environment. Steps for creating virtual environment Example: Go to the Project Folder:- E:\project\webAppProjects Set virtualEnv as : E:\project\webAppProjects>python -m venv venv Activate environment : E:\project\webAppProjects>venv\Scripts\activate Install Django Then install Django in that environment (venv) E:\project\webAppProjects\webProject1>cd \ (venv) E:\>pip install django Now you are ready to start Django for creating web applications Working with Django:- here is the example of