jupyterlab-sos is a JupyterLab extension for the SoS Polyglot Notebook that allows you to use multiple Jupyter kernels in one notebook. It is also a frontend to the SoS Workflow Engine that is designed for daily computational research with both exploratory interactive data analysis and batch data processing.
- sos-notebook and language modules of interest (e.g. sos-python and sos-r). See installation instruction for details.
- JupyterLab >= 1.0.0
- transient-display-data
-
If you are using conda, you can install
jupyterlab-soswith commandconda install jupyterlab-sos -c conda-forge
This will automatically install the
transient-display-dataextension, evenjupyterlab,sos-notebook, andsosif needed. -
If you have a working jupyterlab installation with
sos-notebook, you can installjupyterlab-sosfrom command linepip install jupyterlab-sos
or through the jupyterlab extension installation process, which will require node.js
jupyter labextension install transient-display-data jupyter labextension install jupyterlab-sos
You could also install these two extensions from the extension manager (
Enable Extension ManagerfromSettingsif needed).Finally, if you just upgraded
jupyterlabwithjupyterlab-sosinstalled, you could runjupyter labextension update --all
to upgrade all your extensions to the latest version.
For a development install (requires npm version 4 or later), do the following in the repository directory:
npm install
npm run build
jupyter labextension link .To rebuild the package and the JupyterLab app:
npm run build
jupyter lab build