We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7339e7 commit 86bc311Copy full SHA for 86bc311
1 file changed
Dockerfile_musr
@@ -3,3 +3,17 @@ FROM triumfmlutils/baseml:v0.2
3
LABEL maintainer="klaberinto@triumf.ca"
4
5
RUN pip install bdata
6
+
7
+#Installing JupyterLab
8
+RUN pip install jupyterlab
9
10
+# Installing Jupyter Widgets
11
+RUN pip install ipywidgets
12
+RUN jupyter nbextension enable --py widgetsnbextension
13
14
+# Installing NODE JS required for JupyterLab Widgets Extension
15
+RUN apt install nodejs npm
16
17
+#Installing JypyterLab Widgets Extension
18
+#https://ipywidgets.readthedocs.io/en/stable/user_install.html#installing-the-jupyterlab-extension
19
+RUN jupyter labextension install @jupyter-widgets/jupyterlab-manager
0 commit comments