f7197e2 a5b9fc6 95eee3d a5b9fc6 f7197e2 a5b9fc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash # Create a virtual environment python -m venv venv # Activate the virtual environment source venv/bin/activate # Install dependencies pip install -r requirements.txt # Run the code python src/main.py