Repo for Grupp 7 - 2026
Setup and run (Windows, PowerShell)
- Create a virtual environment (recommended):
python -m venv .venv
.\.venv\Scripts\Activate.ps1- Install dependencies:
pip install -r requirements.txt- Run the backend (from the
backendfolder):
python file.pyVS Code / Pylance notes
- Make sure VS Code is using the same Python interpreter where you installed the packages (
.venvinterpreter). - Open the Command Palette (Ctrl+Shift+P) →
Python: Select Interpreter→ choose the.venvinterpreter. - After selecting the interpreter, Pylance should refresh and resolve
flaskimports.
If you want me to, I can create the venv and install packages now (I will run the commands in the terminal).