> Download desired version from https://www.python.org/downloads/
CD into a new folder and name it as you wish
> pythin3 -m venv venv
> source venv/bin/activate
> pip install django
> django-admin startproject projectname
> django-admin startapp appname
Remember to add your app in INSTALLED_APPS in your settings.py
> python manage.py runserver
> python manage.py makemigrations
> python manage.py migrate
> python manage.py createsuperuser
U: admin
P: test