Skip to content

Commit 66574d9

Browse files
fix: Update deployment guide to include virtual environment activation instructions for Windows and Linux
2 parents 1b0be78 + 66019a1 commit 66574d9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

documents/DeploymentGuide.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,16 +250,20 @@ Once you've opened the project in [Codespaces](#github-codespaces), [Dev Contain
250250
251251
5. Once the deployment has completed successfully, copy the bash command from terminal: (ex: `bash ./infra/scripts/process_sample_data.sh`) for later use.
252252
253-
> **Note**: If you are running this deployment in GitHub Codespaces or VS Code Dev Container or Visual Studio Code (WEB) skip to step 7.
254-
255253
6. Create and activate a virtual environment in bash terminal:
256254
257255
```shell
258256
python -m venv .venv
259257
```
260258
259+
**For Windows (PowerShell/Command Prompt):**
260+
```shell
261+
.venv\Scripts\activate
262+
```
263+
264+
**For Linux/VS Code Web (Bash):**
261265
```shell
262-
source .venv/Scripts/activate
266+
source .venv/bin/activate
263267
```
264268
265269
7. Login to Azure:

0 commit comments

Comments
 (0)