-
Notifications
You must be signed in to change notification settings - Fork 61
Description
Hi all, I am a big fan of ipyvuetify. Thanks for all your work on it.
I have installed it using the command: pip install ipyvuetify
When executing a simple cell like this:
import ipyvuetify as v
my_select = v.Select(label='Fruits', items=['Apple', 'Pear', 'Cherry'])
my_select
I get this error:
Failed to load model class 'SelectModel' from module 'jupyter-vuetify'
Error: No version of module jupyter-vuetify is registered
at f.loadClass (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/lab/extensions/@jupyter-widgets/jupyterlab-manager/static/446.d06879ef26ae24db8963.js?v=d06879ef26ae24db8963:1:75366)
at f.loadModelClass (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/lab/extensions/@jupyter-widgets/jupyterlab-manager/static/327.d242f1a99504b2d5b629.js?v=d242f1a99504b2d5b629:1:10580)
at f._make_model (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/lab/extensions/@jupyter-widgets/jupyterlab-manager/static/327.d242f1a99504b2d5b629.js?v=d242f1a99504b2d5b629:1:7368)
at f.new_model (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/lab/extensions/@jupyter-widgets/jupyterlab-manager/static/327.d242f1a99504b2d5b629.js?v=d242f1a99504b2d5b629:1:5137)
at f.handle_comm_open (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/lab/extensions/@jupyter-widgets/jupyterlab-manager/static/327.d242f1a99504b2d5b629.js?v=d242f1a99504b2d5b629:1:3894)
at _handleCommOpen (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/lab/extensions/@jupyter-widgets/jupyterlab-manager/static/446.d06879ef26ae24db8963.js?v=d06879ef26ae24db8963:1:73903)
at C._handleCommOpen (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/static/lab/jlab_core.1f3141cd05735f510877.js?v=1f3141cd05735f510877:1:1431742)
at async C._handleMessage (https://eu-2.notebooks.open-science-cloud.ec.europa.eu/user/5744b318-1b1d-4f0a-95b6-27cffe029923@myaccessid.org/static/lab/jlab_core.1f3141cd05735f510877.js?v=1f3141cd05735f510877:1:1433732)
This is the result of jupyter labextension list --verbose:
**JupyterLab v4.4.0
/opt/conda/share/jupyter/labextensions
jupyterlab_pygments v0.3.0 enabled OK (python, jupyterlab_pygments)
jupyter-vue v1.11.3 enabled OK
jupyter-vuetify v1.11.3 enabled OK
ipyparallel-labextension v9.0.1 enabled OK
jupyterlab-plotly v6.0.1 enabled OK (python, jupyterlab-plotly)
resource_warning v0.1.0 enabled OK (python, resource_warning)
jupyter-leaflet v0.20.0 enabled OK
nbdime-jupyterlab v3.0.2 enabled OK
jupyter-matplotlib v0.11.7 enabled OK
@jupyter-notebook/lab-extension v7.4.0 enabled OK
@pyviz/jupyterlab_pyviz v3.0.6 enabled OK
@jupyter-server/resource-usage v1.1.1 enabled OK (python, jupyter-resource-usage)
@jupyter-widgets/jupyterlab-manager v5.0.14 enabled OK (python, jupyterlab_widgets)
@jupyterlab/git v0.51.1 enabled OK (python, jupyterlab-git)
@jupyterhub/jupyter-server-proxy v4.4.0 enabled OK
Other labextensions (built into JupyterLab)
app dir: /opt/conda/share/jupyter/lab**
I attachment the result of pip list command: piplist.txt
What can I do to solve the issue?