i have to create a python virtual env on Windows, the code is

cd $ML_PATH //path were i've created a workspace

py -3 -m venv test

after i've done this, it's says

Requested Python version (3) not installed

but i'm sure pyhon 3.6 is already installed, i've tried it and it works, and i'm also sure that i've declared the right Environment Variables for it to work. Now the book that i'm using doesn't give me any hint of how to solve.

  • 1
    The command works for me. Tested py -3.6 -m venv test and py -3 -m venv test. The problem is with your environment path. – Mick_ Mar 31 at 12:34

Browse other questions tagged or ask your own question.