Nov-21-2020, 01:27 AM
Your PATH has to have a directory that contains the installed python executable like
It looks like you've changed PATH to something else and now it can no longer find python.
Try opening a new cmd window and run
python3.exe
or python.exe
, not your project or .py files.It looks like you've changed PATH to something else and now it can no longer find python.
Try opening a new cmd window and run
python -V
. It should show a version number and then you can try to run your program.