import pandas as pd import matplotlib.pyplot as plt from matplotlib import style style.use('ggplot') gives me an error message:
Traceback (most recent call last): File "", line 2, in ImportError: No module named 'matplotlib'
So I go to cmd and typed pip install matplotlib but I get 'Requirement already satisfied'.
I am not really sure what to do....

