How to reinitialize the Python console in PyCharm?

29,692

Solution 1

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"

Solution 2

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

Share:
29,692
User
Author by

User

Internet entrepreneur

Updated on February 14, 2022

Comments

  • User
    User over 2 years

    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?