Follow the steps to start Django application First create virtual environment in your terminal using virtualenv and activate it Example - virtualenv venv - source venv/bin/activate Then run pip install -r requirements.txt to install all dependencies
Then run "python manage.py runserver" in the directory where manage.py file is present, Now got (http://127.0.0.1:8000/) to access your application