Workflow for JupyterLab if it lives in a different environment than the IPython kernel #3147
Unanswered
raffaelemancuso
asked this question in
Q&A
Replies: 1 comment
|
For separate environments, treat the JupyterLab server and the notebook kernel separately. With the current
For example: kernel environmentpython -m pip install "perspective-python[jupyter]" JupyterLab server environmentpython -m pip install perspective-python Then verify with: python -m pip show perspective-python Installing the package only in the kernel environment may not make the extension available to a separate JupyterLab server. Matching compatible versions in both environments is recommended. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
What is the supposed workflow to use if JupyterLab lives in a different environment that the IPython kernel that will use the PerspectiveWidget?
Do I need to install
perspective-pythonin both environments, in order to get the JupyterLab extension in the JupyterLab environment?For
ipywidgetsyou install different packages in the two environments.Best
All reactions