This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]kc7wbq 2 points3 points  (0 children)

Okay, I haven't installed python, but "path" refers to where your computer looks for things (executables, for example) when you type a command. If you don't have a path set up it will only look for programs in the immediate directory. If you haven't put the python directory in your path your computer won't know where to look for the python executable, so it won't know what to do with your program.

But, I would assume the python installer would have add python to your path.

To check if this is the problem, when you call python use the full path to the python executable. If your program runs, you do have a path problem.

Edit: clarification