python3 --version
Clone the repository
git clone ""
pip3 install pipenv
Creating virtual enviroment for the specific project
pipenv install django
Activating
pipenv shell
django-admin
# list all django commands available
django-admin startproject projectname .
# This will start a roject at the current directory without creating another directory where projectname is the name of the project you intent to make
python manage.py runserver
python manage.py startapp new_app_name