I created a venv and I want to use it in another file, but for some reason it says that:
"Python cannot be found"
I installed Python 3.9.2
on Windows 10 and created a venv that worked perfectly in a previous project. However, I created a new file in the same folder (inside my venv folder) and it's not working. How can I activate it?
I read about #!\path\to\venv\bin\activate (also \activate.bat and \python)
but I don't have a bin folder, I replaced bin for Scripts, still not working. How can I solve this?
Side note: the first script runs without issue. Moreover, I installed Python
in a folder called python39.
Thank you in advance!