Hasani
Hasani

Reputation: 3869

How to plot in a new window in Spyder-IDE(Python)

My Spyder-IDE prints the plots in it's ipython console. How can I change the settings to do plotting on a new pop-up window?

enter image description here

Upvotes: 1

Views: 11802

Answers (1)

Carlos Cordoba
Carlos Cordoba

Reputation: 34136

You need to go to the menu

Tools > Preferences > IPython console > Graphics > Graphics Backend

and select the option called Automatic there.

After doing that you need to restart either Spyder or the console kernel for this change to take effect.

Upvotes: 9

Related Questions