Windows CDK does use the virtualenv. Check your cdk.json file. If the second line is "app": "python3 app.py" try changing to "app": "python app.py" and then run again in the virtualenv – cordsen CommentedAug 30, 2023 at 17:29
Windows CDK does use the virtualenv. Check your cdk.json file. If the second line is "app": "python3 app.py" try changing to "app": "python app.py" and then run again in the virtualenv
"app": "python3 app.py"
"app": "python app.py"
– cordsen
CommentedAug 30, 2023 at 17:29
This is the way.