I want to create a virtual environment with Python version 3.9. I am using Windows11 operating system. I found various python version in the folder C:Usersuser1AppDataLocalProgramsPython. The python versions are as follows
Now if I want to create a virtual environment following the command python39 -m venv myvenv
I received the error message ‘python39’ is not recognized as an internal or external command, operable program or batch file.
I also tried another way to create a virtual environment, that did not work either
How can I solve this?
Thank you.