I have just installed Python on my Windows 7. I thought that after that I will be able to run python on the command prompt but it is not the case. After the installation I also found out that I can run the python command shell. This is nice. But what should I do if I want to save my program in a file and then I want to run this program (in Linux, for example, I typed "python file_name.py" in the command line).
A:
Is python.exe in your windows path? Try to look at the PATH environment variable and see if the installation folder of python is listed there.
luc
2010-02-22 13:24:48
+1
A:
You need to add the python bin directory to your path. Follow the instructions here and add c:\python26\bin
to the path (unless you installed python in a non-default location).
Chinmay Kanchi
2010-02-22 13:26:18
Thanks for the help. I just need to add that python started to work from the command prompt when I use "c:\Python26" instead "c:\python\bin".
Roman
2010-02-22 13:49:04
Also thanks for the link to the instructions for changing the environment variables.
Roman
2010-02-22 13:49:55