So, running in PowerShell I can normally execute scripts by either typing the name of the script (i.e. bob.py) or by invoking python and the script name (i.e. "python bob.py"), as long as bob.py is on my PATH. Starting today, the second method no longer works. I can still type the name of the script directly (bob.py) but typing "python bob.py" results in a FileNotFound error. Python and bob.py are both on my PATH.
My question: why did this start happening? How do I fix it?
Thanks in advance.