Notes: I used Linux on this lab, so if you are using Windows some of the steps in this lab will be failed.
- Create python virtual environment for better development process.
$ python3 -m venv venv- Activate the python virtual environment.
$ source venv/bin/activateInstalling Django web framework.
$ python3 -m pip install Django
$ python3 -m django --version$ mkdir django-lab
$ django-admin startproject getting_started django-lab
$ cd django-lab
$ python3 manage.py runserverI followed the tutorials from the Django official documentation website for the fundamentals. And the documentation from Flowbite for the Tailwindcss installation.