I am trying to use IPython notebook on MacOS X with Python 2.7.2 and IPython 1.1.0.
I cannot get matplotlib graphics to show up inline.
import matplo
If your matplotlib version is above 1.4, it is also possible to use
IPython 3.x and above
%matplotlib notebook import matplotlib.pyplot as plt
older versions
%matplotlib nbagg import matplotlib.pyplot as plt
Both will activate the nbagg backend, which enables interactivity.