Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can run the command line version of Python but I cannot seem to run it from the command prompt. I have recently upgraded from Windows 7 to Windows 8 and it worked fine with Windows 7. Now Windows 8 will not recognize Python. Thanks, William

share|improve this question
2  
Did you put it into your PATH environment variable? It doesn't do this automatically as far as I remember. docs.python.org/2/using/… – TheZ Nov 2 '12 at 18:18
@TheZ: For the 3.3 release, an option was added to set the executable's directory in PATH, but it's not enabled as a default. – eryksun Nov 2 '12 at 19:15
@eryksun Oh? It's about time they made it easier for people to do that. It's quite a scary proposition to instruct a novice on how to edit their path variable... a lot can go wrong... a surprising amount of wrong. – TheZ Nov 2 '12 at 19:17
@TheZ: 3.3 also adds shebang support to run a script in a particular interpreter, or starting different interpreters in the console with py -2, py -2.6,py -3, etc. – eryksun Nov 2 '12 at 19:32
@eryksun My god... I really need to get 3.3 and read the changelogs! Sounds like a lot of great stuff. – TheZ Nov 2 '12 at 19:33

2 Answers

The reason why it works from the Menu Item but not from the command prompt is that the menu item specifies the "Start in" directory where the Python executable can be found.

Chances are the Win 7 -> Win 8 upgrade failed to preserve the PATH environmental variable, where the path the Python was previously specified, allowing you to invoke Python from any command prompt console.

share|improve this answer
  1. Go to C:\python33 or wherever you installed it.
  2. Right click on "pythonw" and pin to taskbar,
  3. Run from taskbar.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.