I\'m trying the tutorial Using Cloud Datastore with Python, but when I run:
virtualenv -p python3 env
I got an error:
The path
Just a comment: On my Win10, for python3 scripts, I run py c:\path\to\script. For example:
py -m pip --version
So to make the above command work, I used:
py -m venv env
and:
virtualenv -p py env
So that could be a possible solution as well.