You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **📋 Note**: The batch function shares the same dependencies managed by the root `pyproject.toml`. No separate installation is needed for the batch function.
358
+
### 6.2. Install Batch Function Dependencies
359
+
360
+
```bash
361
+
# Navigate to batch directory
362
+
cd batch
363
+
364
+
# Install dependencies
365
+
pip install -r requirements.txt
366
+
```
359
367
360
368
### 6.3. Alternative: Use Setup Script
361
369
@@ -584,7 +592,14 @@ Copy-Item ..\..\..\.azure\<env-name>\.env . # Windows PowerShell
584
592
585
593
> **⚠️ Important**: Replace `<env-name>` with your actual azd environment name. You can find it by running `azd env list`.
586
594
587
-
### 10.2. Run the Batch Function
595
+
### 10.2. Install Batch Function Dependencies
596
+
597
+
```bash
598
+
# Make sure you're in code/backend/batch directory
599
+
pip install -r requirements.txt
600
+
```
601
+
602
+
### 10.3. Run the Batch Function
588
603
589
604
#### Option A: Using Azure Functions Core Tools (Command Line)
0 commit comments