move venv to shared (#1291)

This commit is contained in:
NotSoToothless
2026-05-31 01:43:19 -07:00
committed by GitHub
parent 37c3e66d75
commit cb0a18f748
11 changed files with 23 additions and 41 deletions
+4 -4
View File
@@ -7,15 +7,15 @@
cd BOTS/SREBOT
```
2. **Set up Python virtual environment**
2. **Set up the shared Python virtual environment** (used by both SREBOT and TSSBOT)
```bash
python3 -m venv .venv
source .venv/bin/activate
python3 -m venv ../SHARED/.venv
source ../SHARED/.venv/bin/activate
```
3. **Install dependencies**
```bash
pip install -r requirements.txt
pip install -r ../SHARED/requirements.txt
```
4. **Configure environment variables**