我正在尝试在 ipython notebook 中创建一个交互式绘图。我正在尝试从 matplotlib 的网站运行示例代码,如下所示。
t = arange(10)
plot(t, sin(t))
print("Please click")
x = ginput(3)
print("clicked",x)
show()
我收到此错误:
/Library/Python/2.7/site-packages/matplotlib/backend_bases.pyc in start_event_loop(self, timeout)
2370 This is implemented only for backends with GUIs.
2371 """
-> 2372 raise NotImplementedError
2373
2374 def stop_event_loop(self):
NotImplementedError:
我认为这与运行 ipython 笔记本和 HTML 有关。这可以解决吗?如何?
谢谢!!!