Skip to content
Advertisement

matplotlib pyplot.plt.style works in Terminal, but not in SublimeText, PyCharm, or BBEdit

I’m having a lot of trouble with matplotlib, specifically pyplot.style.use(). What I have.

First, some sample code, adapted from Python Crash Course 2e.

JavaScript

When entered one line at the time on the python terminal, everything works as expected. However, when run through any of my Python editors, I get errors.

In Sublime Text, the plt.style.use('seaborn') is flagged and the console says

JavaScript

In Pycharm, the error seems more fundamental. It triggers on the very first line of the script saying

JavaScript

BBedit has a similar but distinct matplotlib error:

JavaScript

This variety of errors is beyond my n00b python powers to debug.

Advertisement

Answer

You are probably running different python environments without meaning to. One environment is activated in the terminal – that one has matplotlib installed. Another one is used in PyCharm – that one doesn’t.

So the root cause isn’t about Python coding, it’s about getting each app to point to the same python executable. Compare the executable path in your PyCharm config at Preferences | Project | Project Interpreter with the one you have in Terminal. The Python executable set for Terminal can be found by running echo `which python`.

Advertisement