jupyter-matplotlib:显示小部件时出错:找不到模型
问题描述
我正在尝试安装jupyter-matplotlib扩展,但无法使其在jupyterlab实例中工作。
安装后,请执行以下步骤:
https://github.com/matplotlib/jupyter-matplotlib
执行简单示例时出现错误:
显示小部件时出错:找不到模型
以下是My$ conda list
对相关包的输出:
ipykernel 5.1.1
ipympl 0.2.1
IPython 7.6.1
IPython_TURTILS 0.2.0
ipywidgets 7.5.0
jupyter_client 5.3.1
jupyter_core 4.4.0
jupyterlab 1.0.2
jupyterlab_server 1.0.0
解决方案
已解决! 原来ipywidget7.5破坏了jupyter实验室,它也影响了其他库。
https://github.com/plotly/plotly.py/issues/1659
降级到7为我解决了问题(虽然7 WRT 7.5应该是向后兼容的)!
还要确保将ipympl 0.2.1与jupyter-matplotlib 0.3.0 labtension匹配。
jupyter labextension install jupyter-matplotlib@0.3.0
相关文章