Skip to content

Commit

Permalink
windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
Hennzau committed Sep 9, 2024
1 parent 8438a8a commit 7c065a7
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion courses/getting-started/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,23 @@ nodes:
source .venv/bin/activate
python nodes/listener.py
```
#### Windows
**For windows users it's hard to make everything works correctly**, so I recommand using the first option or this `dataflow.yml`:

Check warning on line 140 in courses/getting-started/README.md

View workflow job for this annotation

GitHub Actions / Typos

"recommand" should be "recommend".

```yaml
nodes:
- id: talker
path: powershell
args: ./.venv/Scripts/python nodes/talker.py
- id: listener
path: powershell
args: ./.venv/Scripts/python nodes/listener.py
```

**Note**: you may need to execute this command `Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force;` as Admin

---

Now you’re almost done setting up your `dataflow.yml`.

Expand Down Expand Up @@ -222,7 +239,7 @@ As you can see, the message was successfully sent from `talker.py` to `listener.
Here is the complete code for our application:

```YAML
# dataflow.yml
# dataflow.yml | see above for windows user
nodes:
- id: talker
path: shell
Expand Down

0 comments on commit 7c065a7

Please sign in to comment.