Ich versuche, IPython Notebook auf MacOS X mit Python 2.7.2 und IPython 1.1.0 zu verwenden.
Ich kann die matplotlib-Grafiken nicht inline anzeigen lassen.
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
Ich habe auch %pylab inline
ausprobiert und die IPython Befehlszeilenargumente --pylab=inline
, aber das macht keinen Unterschied.
x = np.linspace(0, 3*np.pi, 500)
plt.plot(x, np.sin(x**2))
plt.title('Ein einfacher Chirp')
plt.show()
Statt Inline-Grafiken erhalte ich das:
Und matplotlib.get_backend()
zeigt, dass ich das 'module://IPython.kernel.zmq.pylab.backend_inline'
Backend habe.