Pydev: debugging in console mode (interactive)?

I'm just starting to use pydev, but I have enough experience with Eclipse.

I can use F11 to debug a file.

I can use Ctrl-Alt-Enter to start the console after starting the current file, but does not seem to follow breakpoints.

Is there a way to start the console (similar to Ctrl-Alt-Enter) in debug mode?

+8
python debugging eclipse pydev
source share
2 answers

There is another way to have the console in debug mode: start debugging when you reach the first breakpoint (maybe you need to add a breakpoint on line 1), the console is actually interactive in the debugging perspective.

Although the console is a bit laggy, but it works, more information can be found at: http://pydev.org/manual_adv_debug_console.html

+4
source share

Yes, now it is available in PyDev. See https://stackoverflow.com/a/166269/ for more information.

0
source share

All Articles