-
Navigate to the
backend
Directorycd backend
-
Create the Virtual Environment
python -m venv venv
-
Activate the Virtual Environment
- On Windows:
venv\Scripts\activate
- On macOS/Linux:
source venv/bin/activate
- On Windows:
-
Installing the python packages
- On Windows (will take some time to finish):
pip install -r requirements.txt
- On Windows (will take some time to finish):
- Run the Python Application
python app.py
- To dexit the environment
deactivate