dabljues
dabljues

Reputation: 1937

Pycharm reuse last opened console when running the script

I recently switched from Visual Studio Code to PyCharm - just to try it out. I have a python project, it is a console application, so I often run it. The problem is when I run it - it opens a different Python console tab, which takes more time to load (it sets up paths etc.). So I end up with multiple tabs on the bottom of my screen, like this:

enter image description here

Is there a way to configure PyCharm so it will run my app in the same console?

Upvotes: 1

Views: 81

Answers (1)

Pavel Karateev
Pavel Karateev

Reputation: 8495

There is a special option for this in PyCharm: Settings | Build, Execution, Deployment | Console | Use existing console for "Run with Python console".

Upvotes: 1

Related Questions