In this video i will teach you how you can install django and start your own django project in ubuntu.
Codes:
sudo apt-get install python3-django
-----------------------------------------------------------------
Make a new file in your desired directory
django-admin startproject project
--------------------------------------------------------------------
Change the directory to that specific directory
python3 manage.py migrate {to handle errors }
python3 manage.py runserver
---------------------------------------------------------------------
To create Super user and access admin:
python3 manage.py createsuperuser
---------------------------------------------------------------------------
Fill the informations for username and password.