0

I installed the python tools for visual studio from http://pytools.codeplex.com/. I find that when I press f5 or ctrl+f5 the output in command prompt just flashes for a second and I am not able to see clearly. Is there any settings that I have to change? I would prefer the output in a python IDLE rather than the command prompt is there a way?

Thanks

Rkz
  • 1,237
  • 5
  • 16
  • 30
  • You could add a raw_input() at the end to wait for you to press enter. – jamylak May 10 '12 at 04:58
  • 1
    There is an option for that. See [this question][1] [1]: http://stackoverflow.com/questions/9424873/console-windows-closes-right-after-i-hit-ctrlf5-in-visual-studio-tools-for-pyth – Yuri Astrakhan Dec 06 '12 at 03:25

1 Answers1

0

The raw_input() at the end works.

Rkz
  • 1,237
  • 5
  • 16
  • 30