I tried to run a python script which does not exist in current folder, for example
C:\>python Test.py
python:can't open file 'Test.py':[Errno2] No such file or directory
I have to specify the absolute path c:\testdir\test.py to make the command workable.
c:\python c:\testdir\Test.py
I tried to append "c:\testdir" into Env argument 'PATH', but it still doesn't work.
i want to use the filename rather than the entire path, c:\python Test.py can i make it happen?