MaxManus said:
I'm not sure I understand. I went to edit edit environment variables and added Name: "Python" Value: "D:\Conduit Root\python\python-2.5.1\python.exe", but I stil get the same error
I'll tell you the details of how I got I got it working on my system. (If you're not familiar with this, perhaps you want to make a copy of your path before you add to it? Open a command prompt and then type in
which will put a copy of your path in a text file in your current directory.)
Anyways, what I did was go to:
control panel -> system -> advanced -> environment variables
On the window that comes up, there will be two sections: one for "User variables for <name>" (where <name> is the login name) and one for "System variables".
In the "system variables" window, scroll down until you see "path" under the variable heading. Highlight that line and then press edit.
In the next popup window, I edited "Variable value". Make sure you are at the end of that line (you are just adding to the line, not changing anything that's already there and it can be a long line) and then I typed in exactly
The semicolon separates entries in the path, and on my system python.exepython is located in c:\Python25. Then you can press OK three times.
After that has all closed, open an command prompt window. You can type "path" to see what your path currently is, and at that point I can type "python" to start python, or "kick.py" to start a file.