You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the docs for jupyterlab support (e.g. here or here) imply that the user installs both jupyter, plotly, and the jupyterlab-plotly extension in the same python environment.
In jupyter, users can register existing python environments that are then available as additional kernels to run notebooks on. This helps users avoid running jupyter notebooks on the python environment serving the jupyterlab instance or to install jupyter in every python instance they want to run jupyter notebooks in. In my experience, users often have one environment to start the jupyter server in, and then several different kernels for different projects they are working on.
If a user is expecting to install and use plotly in such a setup (1 python environment for jupyter, a separate one to run plotly in) then she needs to install the jupyterlab-plotly extension (and therefore jupyter itself) in both environments. This is not necessarily intuitive and doesn't fail in a very explicit way if done incorrectly (e.g. here).
edit: This is not actually true. Only the environment running the jupyter server needs the jupyterlab-plotly extension. The environment executing inside jupyterlab only needs nbformat as an additional dependency. This is correctly raised by ValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installed. So the only case that may be unintuitive is if the user, incorrectly, installs the jupyterlab-plotly extension in the environment used to execute inside jupyter but not in the one serving jupyter. In this case, figures remain blank.
Setup
I set up 4 conda environments that either have or do not have the jupyterlab-plotly extension installed: 2 to run the jupyter server and 2 to install and run plotly inside a jupyter lab instance: edit: the below example is not correct. Only the server environment needs the jupyterlab-plotly extension. The processing environment needs nbformat, but no extensions.
serv-no
Plain jupyter server environment as it might be installed by following the jupyter docs
conda create -n serv-no jupyter jupyterlab -y
serv-yes
Same as serv-no, but also includes the jupyterlab-plotly extension
plain environment with plotly installed, but no jupyterlab-plotly extension. Needs ipykernel to register the kernel with the jupyter notebook server. Needs python=3.8 because ipykernel not yet available for 3.9.
edit: this environment only needs nbformat to work as expected. The reason the above example works is because installing jupyter also installs nbformat. But jupyter is not needed in the processing environment. This is correctly explained by raised ValueError. So instead we can just do:
conda install nbformat -y
Reproduce
source server environment, e.g.: conda activate serv-no
start jupyterlab jupyter lab
select a kernel, e.g. proc-yes
run any plotting example from the plotly docs, e.g.
edit: this example fails, but only because the server environment is missing the jupyterlab-plotly extension.
Outcome
proc-no does not have extensionedit: nbformat
proc-yes hasextensionedit: nbformat
serv-no does not have extension
🤷♀️ (doesn't work, not expected to, edit: but the error message also doesn't point to the underlying problem): ValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installed
😭 (doesn't work, probably not expected toedit: user got the installation backwards): Blank Figure / Doesn't get rendered / no error message
serv-yes has extension
😭 (doesn't work, could reasonably be expected to work): ValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installededit: all that is needed to fix is in the error message
👍 All is good
I think two possible fixes would be: 1. Add a warning or note to the docs, that the installation instructions assume that jupyter, the extension, and plotly are installed in the same environment and that things can break if not
2. Add a section to the docs for multi-kernel setups that clarifies that the installation of jupyter and the extension needs to also be done in the environment that will run plotlyedit: that the extension must be installed for the server environment for plotly to work correctly.
The text was updated successfully, but these errors were encountered:
surchs
changed the title
when running additonal jupyter kernels, jupyterlab extension must be installed in all environments
when running additonal jupyter kernels, jupyterlab extension must be installed in the default environment
Nov 17, 2020
Currently, the docs for jupyterlab support (e.g. here or here) imply that the user installs both jupyter, plotly, and the jupyterlab-plotly extension in the same python environment.
In jupyter, users can register existing python environments that are then available as additional kernels to run notebooks on. This helps users avoid running jupyter notebooks on the python environment serving the jupyterlab instance or to install jupyter in every python instance they want to run jupyter notebooks in. In my experience, users often have one environment to start the jupyter server in, and then several different kernels for different projects they are working on.
If a user is expecting to install and use plotly in such a setup (1 python environment for jupyter, a separate one to run plotly in) then she needs to install the jupyterlab-plotly extension (and therefore jupyter itself)
in both environments. This is not necessarily intuitive and doesn't fail in a very explicit way if done incorrectly (e.g. here).edit: This is not actually true. Only the environment running the jupyter server needs the jupyterlab-plotly extension. The environment executing inside jupyterlab only needs
nbformat
as an additional dependency. This is correctly raised byValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installed
. So the only case that may be unintuitive is if the user, incorrectly, installs the jupyterlab-plotly extension in the environment used to execute inside jupyter but not in the one serving jupyter. In this case, figures remain blank.Setup
I set up 4 conda environments that either
have or do not have the jupyterlab-plotly extension installed: 2 to run the jupyter server and 2 to install and run plotly inside a jupyter lab instance:edit: the below example is not correct. Only the server environment needs the jupyterlab-plotly extension. The processing environment needs
nbformat
, but no extensions.serv-no
Plain jupyter server environment as it might be installed by following the jupyter docs
serv-yes
Same as
serv-no
, but also includes the jupyterlab-plotly extensionproc-no
plain environment with plotly installed, but no jupyterlab-plotly extension. Needs
ipykernel
to register the kernel with the jupyter notebook server. Needs python=3.8 because ipykernel not yet available for 3.9.proc-yes
Same as
proc-no
, but also installedjupyterlab and jupyterlab-plotly extensionedit:nbformat
jupyter labextension install [email protected]
edit: this environment only needs
nbformat
to work as expected. The reason the above example works is because installingjupyter
also installsnbformat
. Butjupyter
is not needed in the processing environment. This is correctly explained by raisedValueError
. So instead we can just do:conda install nbformat -y
Reproduce
conda activate serv-no
jupyter lab
proc-yes
edit: this example fails, but only because the server environment is missing the jupyterlab-plotly extension.
Outcome
does not
haveextensionedit:nbformat
has
extensionedit:nbformat
does not
have extensionValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installed
probably not expected toedit: user got the installation backwards): Blank Figure / Doesn't get rendered / no error messagehas
extensioncould reasonably be expected to work):ValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installed
edit: all that is needed to fix is in the error messageI think two possible fixes would be:
1. Add a warning or note to the docs, that the installation instructions assume that jupyter, the extension, and plotly are installed in the same environment and that things can break if not2. Add a section to the docs for multi-kernel setups that clarifies
that the installation of jupyter and the extension needs to also be done in the environment that will run plotlyedit: that the extension must be installed for the server environment for plotly to work correctly.The text was updated successfully, but these errors were encountered: