Jupyter-matplotlib:显示小部件时出错:未找到模型

3zwtqj6y  于 2023-05-18  发布在  其他
关注(0)|答案(3)|浏览(288)

我正在尝试安装jupyter-matplotlib扩展,但无法使其在jupyterlab示例中工作。安装后,请按照以下步骤进行:
https://github.com/matplotlib/jupyter-matplotlib
我在执行一个简单的例子时得到了错误:

  • 显示小部件时出错:页面未找到 *

下面是我的$ conda list对相关包的输出:
ipycernel 5.1.1
ipyppl 0.2.1
IPython 7.6.1
ipython_genutils 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

bihw5rsg

bihw5rsg1#

解决了!原来ipywidget 7.5破坏了jupyter实验室,它也影响了其他库。
https://github.com/plotly/plotly.py/issues/1659
降级到7为我解决了这个问题(尽管7 WRT 7. 5应该是向后兼容的)!
同时确保ipypl 0.2.1与jupyter-matplotlib 0.3.0 labextension匹配。jupyter labextension install jupyter-matplotlib@0.3.0

dkqlctbz

dkqlctbz2#

首先,您需要安装:

pip install ipywidgets

 conda install -c conda-forge ipympl

然后检查以下各项是否正常:

!jupyter labextension list

你应该看到这样的东西:

JupyterLab v3.0.14
/home/jovyan/.local/share/jupyter/labextensions
    jupyter-leaflet v0.15.0 enabled OK
    jupyterlab-plotly v5.1.0 enabled OK
    @jupyter-widgets/jupyterlab-manager v3.0.0 enabled OK (python, jupyterlab_widgets)

最重要的部分在这里:

重新启动jupyter笔记本。

bhmjp9jg

bhmjp9jg3#

当我第一次安装ipyppl时,我也收到了同样的错误消息,但当我重新启动Jupyter实验室时,它自动解决了。

相关问题