① First, install Django
$ pip3 install django
② Install the Djnago framework
$ django-admin startproject project name
③ Read the migration file
$ python3 manage.py migrate
④ Start local server
$ pyhton3 manage.py runserver
⑤ Display on the browser
localhost:8000
Other
Application creation
$python3 manage.py startapp name
It's easy.
Recommended Posts