CIS Task Python 3.10.8 after getting this repo in your pc : for windows user : open CMD in the (repo) folder py -m venv venv venv\Scripts\activate pip install -r requirements.txt cd backend py manage.py runserver for linux user : open terminal in the (repo) folder python3 -m venv venv source venv/bin/activate pip install -r requirements.txt cd backend python3 manage.py runserver folders structure: endpoint in py_client app make sure that venv is activate and the server is ready : cd py_client (linux or windows) py list.py (windows) python3 list.py (linux) or Admin User : username,password = ahmed Staff User : username = staff password = staffstaff additional info to get django base files path in your PC you should active your venv run this command : python3 -c "import django; print(django.path)"