I'm working on two computers, both of them running Windows 10. I'm pretty sure I installed the same python environment for the two of them (python3 32bits, numpy, scipy and matplotlib through pip).
They don't produce the same kind of matplotlib window (the toolbar is different, and the colormap does not seem to be the same). Here are two screenshots:
Matplotlib result 1:
Matplotlib result 2:
I guess it's a backend issue, but I can't seem to remember installing an additional backend on one of those environments. Since the picture 2 looks "GTK" to me, I still tried to install pygtk on my 2nd computer, which required me to install pygobject, which yields this compilation error:
fatal error C1083: Cannot open include file: 'cairo.h': No such file or directory
How could I get these two matplotlib setups to look the same?

