if I installed Python program in my E drive not C drive, is it the necessary that I must execute python files in the same drive that I installed python program in Command Prompt?
for example, I installed Python Program in my E drive. I can only be allowed to execute python files by following command?
E:\python34\python filename.py
NOT
C:\python34\python filename.py
or
E:\others_direactory\python filename.py
so, I always need to tell computer to use Python program to execute the python.py, otherwise it will alert "XXX is not recognized as an internal or external command, operable program or batch file".
is that right?
Thanks