diff --git a/courses/getting-started/README.md b/courses/getting-started/README.md index c11c08cf1..e74f1700a 100644 --- a/courses/getting-started/README.md +++ b/courses/getting-started/README.md @@ -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`: + +```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`. @@ -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