我试图在MacOS X上使用IPython笔记本,使用Python 2.7.2和IPython 1.1.0。
我无法让matplotlib图形内联显示。
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
我还尝试了%pylab inline和ipython命令行参数——pylab=inline,但这没有什么区别。
x = np.linspace(0, 3*np.pi, 500)
plt.plot(x, np.sin(x**2))
plt.title('A simple chirp')
plt.show()
而不是内联图形,我得到这个:
<matplotlib.figure.Figure at 0x110b9c450>
matplotlib.get_backend()显示我有'模块://IPython.kernel.zmq.pylab。backend_inline的后端。
我在笔记本的第一个单元格中使用了%matplotlib内联,它可以工作。我认为你应该试试:
%matplotlib inline
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
通过在配置文件中设置以下配置选项,你也可以在默认情况下以内联模式启动所有的IPython内核:
c.IPKernelApp.matplotlib=<CaselessStrEnum>
Default: None
Choices: ['auto', 'gtk', 'gtk3', 'inline', 'nbagg', 'notebook', 'osx', 'qt', 'qt4', 'qt5', 'tk', 'wx']
Configure matplotlib for interactive use with the default matplotlib backend.
我在笔记本的第一个单元格中使用了%matplotlib内联,它可以工作。我认为你应该试试:
%matplotlib inline
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
通过在配置文件中设置以下配置选项,你也可以在默认情况下以内联模式启动所有的IPython内核:
c.IPKernelApp.matplotlib=<CaselessStrEnum>
Default: None
Choices: ['auto', 'gtk', 'gtk3', 'inline', 'nbagg', 'notebook', 'osx', 'qt', 'qt4', 'qt5', 'tk', 'wx']
Configure matplotlib for interactive use with the default matplotlib backend.