start django project

C++
pip install django # Install Django Packages
django-admin startproject project_name # Create a Project
cd project_name
python manage.py makemigrations # Create new migrations
python manage.py migrate # Apply Migrations
python manage.py createsuperuser # Create User for admin
python manage.py runserver # Start Server

python manage.py startapp sub_module # Create a sub appdjango-admin startproject project_namepython manage.py startapp # name of the app# to start a django server cd to dir with manage.py file and type following
python manage.py runserver
python manage.py startapp app_namedjango-admin startproject <//name of project\\>
Source

Also in C++: