Skip to content

Commit 2c4c460

Browse files
committed
tested qs and made modifications
1 parent 8077aed commit 2c4c460

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/azure-functions/durable-task-scheduler/quickstart-portable-durable-task-sdks.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,14 +224,14 @@ Total items processed: 5
224224

225225
```bash
226226
python -m venv venv
227-
venv/Scripts/activate
227+
source ./venv/bin/activate
228228
```
229229

230230
# [Linux](#tab/linux)
231231

232232
```bash
233233
python -m venv venv
234-
source venv/bin/activate
234+
source ./venv/bin/activate
235235
```
236236

237237
---
@@ -260,9 +260,10 @@ Total items processed: 5
260260
Successfully connected to http://localhost:8080. Waiting for work items...
261261
```
262262
263-
1. In a new terminal (with the virtual environment activated, if applicable), run the client.
263+
1. In a new terminal (with the virtual environment activated, if applicable), start the virtual environment, and then run the client.
264264
265265
```bash
266+
source ./venv/bin/activate
266267
python client.py
267268
```
268269

0 commit comments

Comments
 (0)