2016-08-23 99 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 
相關問題