Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pycharm Community Edition: "Unable to display frame variables"

Tags:

pycharm

I get this error in the debug pane (replacing the variables) whenever Pycharm is stopped at a breakpoint on one project, which uses Flask. I created a new project to test this. The variables displayed in a breakpoint in this project; however they were not displayed on the exception breakpoint that resulted from having a nonexistent file in the run configuration.

Anyone have any ideas of what's going on?

like image 310
whoKnows Avatar asked Dec 15 '15 22:12

whoKnows


People also ask

How do you show Variables in PyCharm?

View variables as arraysIn the Variables tab of the Debug tool window, select an array or a DataFrame. Click a link View as Array/View as DataFrame to the right. Alternatively, you can choose View as Array or View as DataFrame from the context menu. The Data View tool window appears.

Where is the Variables tab in PyCharm?

In PyCharm the debug toolkit is opened as a tab at the bottom of the screen. In the bottom right we see the variable explorer which gives us the name, type and value of all the variables in scope.

What does the lightning bolt mean in PyCharm?

button to resume the script execution. The exception is here. Another breakpoint appeared as well: by default PyCharm will halt for any exception that wasn't caught in your code, and it'll show an icon of a breakpoint with a lightning bolt. The debugger also shows the error message.


1 Answers

I found the answer for my problem here https://youtrack.jetbrains.com/issue/PY-20198

Basically, you just need to update your pydev using the one that attached in the link above.

like image 62
ismailsunni Avatar answered Oct 23 '22 15:10

ismailsunni