Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to reinitialize the Python console in PyCharm?

Tags:

python

pycharm

I've seen other IDEs have the option to right click and reinitialize the environment. Does anyone know if this is possible in PyCharm, and if so, how it's done?

like image 980
User Avatar asked Nov 21 '16 03:11

User


People also ask

How do I get the Python console back in PyCharm?

The console appears as a tool window every time you choose the corresponding command on the Tools menu. You can assign a shortcut to open Python console: press Ctrl+Alt+S , navigate to Keymap, specify a shortcut for Main menu | Tools | Python or Debug Console.

How do I clear the Python console?

The commands used to clear the terminal or Python shell are cls and clear.

How do I stop PyCharm console?

Stop a programon the toolbar, or press Ctrl+F2 .


2 Answers

Look for this button in the console to restart Kernel

There is a little reset button (small square with a curved green arrow can be seen above) on the top left of the console that says "Rerun" as the tool tip; this seems to reset the console.

If you can't see the button, the Toolbar might be hidden. To get the Toolbar you need to right click on the "Python Console" tab, and click on "Show Toolbar"

like image 79
Morgan Rodgers Avatar answered Sep 21 '22 17:09

Morgan Rodgers


The other answer is correct, I'm adding a new answer on how to create a shortcut for re-running the console. By default, it doesn't have any shortcut, but you can add it by mapping it in Keymap.

  1. Open Preferences (in Mac: Cmd+,) and search for "rerun"

  2. Add the keyboard shortcut for Rerun by double-clicking the "Rerun" line. As you can see from the image below, I assign Cmd+Shift+O for it. preferences screenshot

Now you can rerun the console by using the shortcut and don't have to use your mouse anymore. enter image description here

like image 32
dieend Avatar answered Sep 24 '22 17:09

dieend