I want to use the pre-release Jupyter Lab version 1.0+. I have a Pipfile
that looks like this:
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
ipywidgets = "*"
jupyterlab = ">=1.0.0a0"
...
[requires]
python_version = "3.7"
[pipenv]
allow_prereleases = true
which installs the following versions:
jupyterlab==1.0.0rc0
ipywidgets==7.4.2
notebook==5.7.8
widgetsnbextension==3.4.2
I then run the command jupyter labextension install @jupyter-widgets/jupyterlab-manager
. It installs the labextension:
@jupyter-widgets/jupyterlab-manager v0.39.1
.
I can't get the widgets to appear in the notebook.
I know it can cause problems to have mismatched Jupyter Lab & Jupyter Widgets versions. Is there a version of Jupyter Widgets compatible with version 1.0 of Jupyter Lab?