Example using Django-Finite-State-Machine (django-fsm) in Django Create virtual environment python3 -m venv env Activate the virtual environment source env/bin/activate Install django and dependencies pip install django pip install django-fsm pip install djangorestframework Create django project django-admin startproject core Navigate to the project core cd core Create order app python manage.py startapp orders NOTES TODO Making a Request with POSTMAN