Jeff
Jeff

Reputation: 677

Eclipse/Pydev debug error - [Invalid Frame]

When I try to use the Eclipse/Pydev interactive console in debug mode, I am getting the following error:

[Invalid Frame]: Please select frame to connect the console.

This seems like something that could easily be corrected, but I don't have much experience with this. Searching SO and google did not turn up anything helpful.

Upvotes: 0

Views: 2658

Answers (2)

davide
davide

Reputation: 1

In my case the execution hadn't reached the breakpoint yet. When that happens you'll get something like:

Backend MacOSX is interactive backend. Turning interactive mode on.

Upvotes: 0

Fabio Zadrozny
Fabio Zadrozny

Reputation: 25332

As the message says, for the interactive console in debug mode, you need to have a frame selected -- this is the stack frame on the debug view (so, open the debug view and select the frame on which the commands you execute should be evaluated).

Upvotes: 1

Related Questions