Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open interactive python console by default?

Tags:

python

pycharm

When I stop at breakpoint - I can run interactive console in debug mode to see varibles, evaluate simple expressions, etc.

However, this takes a lot of time every time when you need go there and click this small icon to start interactive session.

Is there any way to make this wonderful IDE start python console in interactive mode automatically?

Thanks

like image 500
drsealks Avatar asked May 16 '17 21:05

drsealks


2 Answers

You can enable the debug console by default by setting:

Preferences -> Build, Execution, Deployment -> Console > Always show debug console Screencap

like image 71
khan Avatar answered Sep 20 '22 20:09

khan


To get the console to show by default which I believe is the desired outcome check the Focus on Breakpoints option on the right-click menu from the Console tab:

enter image description here

like image 27
Hanni Ali Avatar answered Sep 21 '22 20:09

Hanni Ali