2016-08-23 117 views
1

matplotlib.pyplot需要很长的时间来运行,最后不图显示屏幕%matplotlib在线上没有显示jupyter笔记本电脑的任何情节

matplotlib.back_end()提供了以下

u'TkAgg' 

有人能提出一个解决方案上?

注:我安装使用pip install matplotlib

+0

我想'matplotlib.pyplot'会生成图形,但你不得不调用'matplotlib.pyplot.show'如果你想它来显示(交互) – doctorlove

+0

我用'matplotlib.pyplot.plot (test_data [“coln1” ],test_data [“coln2”],“。”)'但仍然没有输出@doctorlove – soubh1k

+0

...这意味着导入需要年龄? – doctorlove

回答

0

我也有类似的问题,jupyter笔记本在Mac OSX 10.10.5

工作,最后我重新安装IPython的依赖和使用命令

固定它matplotlib
pip install -U --force-reinstall numpy matplotlib pyzmq jinja2 ipython 
相关问题