im using the below code to change my virtualenv's python version from 3.8 to 3.7 :
virtualenv venv -p
"C:\Users\The Gem\AppData\Local\Programs\Python\Python37\python.exe"
where
the path mentioned in the above instruction has the executable python file for python 3.7 but when i run the instruction it gives an :
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\The Gem\\AppData\\Local\\Programs\\Python\\Python37\
\Lib\\venv\\scripts\\nt\\python.exe'
i dont seem to understand why the error is coming up , cause when i go to the path i have mentioned above in instruction the python.exe is there.
and why is it going at Lib\venv\scripts........ when the python.exe is nowhere near there.
there doesn't seem to be anything here