I am a Python beginner and I am having trouble running Python from CMD. I have added the Python installation directory as a PATH variable (;C:\Python27). I am able to run the Python Interpreter from CMD, however when I issue a command like "python file.py command" from CMD, it returns "Error2, Python can't open, no such file/directory".
So what I do is go to "cd C:\Folder\Folder2\My_Python_Files", then type the "file.py command" each and every time. Is there faster or more efficient way of doing this? I am currently running Python2.7 on Windows 8.
file.pytoPYTHONPATHenvironment variable. – Rohit Jain Nov 20 '12 at 20:51file.pyand what is the current directory when you typepython file.py? Adding the Python directory to the path just makes Python itself globally accessible; it doesn't make all programs written in Python automatically accessible. You still have to be in the same directory as a particular Python file to run it (unless you do even more path manipulations). – BrenBarn Nov 20 '12 at 20:52PATHenv – jdi Nov 20 '12 at 21:06