Adam Ryczkowski
Adam Ryczkowski

Reputation: 8064

PyDev: What is the difference between "Console" and "Interactive Console"?

I am trying to prove a claim, that it is possible to connect debugging session to existing IPython console ([1], [2]). Maybe I don't get the terminology right.

What is the difference between "Console" and "Interactive Console"?

enter image description here

vs

enter image description here

Interesting fact is that the "Interactive Console" is always disabled (i.e. non-interactive) in contrast to a "Console", which behaves as expected, i.e. as IPython console.

Upvotes: 0

Views: 85

Answers (1)

Fabio Zadrozny
Fabio Zadrozny

Reputation: 25332

The PyDev interactive console is actually in the 'Console' view (but it has a special one which you can create which is the 'interactive console' -- in the Console View you can choose to create one bound to a debug session -- if a breakpoint is currently active, just choose the create new action in the console view and choose 'PyDev console' with a breakpoint active).

The 'Interactive Console' view is from some other plugin (not sure which one as it doesn't appear for me).

Upvotes: 1

Related Questions