Installing Django πŸš€

Photo by Faisal on Unsplash

Installing Django πŸš€

Β·

1 min read

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.

image.png

  • you can access to http://127.0.0.1:8000/ and once you access, you will see the screen as below.

image.png

Β