Table of contents
How to install Django?
$ python3 -m pip install django
sub-command
- the below command will show you the sub-command
$ django-admin
How to start
$ django-admin startproject `write your project name` .
$ python3 manage.py runserver
Once successful, you will see the msg from the terminal as below.
- you can access to
http://127.0.0.1:8000/
and once you access, you will see the screen as below.
Β