Install Django

Install Django

Ensure you are in Laragon’s Terminal (Menu > Laragon > Terminal) then type this:

pip install Django

That’s all. You can check which Django version by:

python -m django --version

Write your first Django app

  1. Creating a project:

    django-admin startproject mysite
  2. Go to mysite directory, and run with the following commands:

    cd mysite
    python manage.py runserver

Now, you can access Django Welcome page at:
http://localhost:8000/

You can follow further steps here:
https://docs.djangoproject.com/en/1.11/intro/tutorial01/