-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add code to install JupyerLab, Jupyter Widgets,
- Loading branch information
1 parent
d7339e7
commit 86bc311
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,17 @@ FROM triumfmlutils/baseml:v0.2 | |
LABEL maintainer="[email protected]" | ||
|
||
RUN pip install bdata | ||
|
||
#Installing JupyterLab | ||
RUN pip install jupyterlab | ||
|
||
# Installing Jupyter Widgets | ||
RUN pip install ipywidgets | ||
RUN jupyter nbextension enable --py widgetsnbextension | ||
|
||
# Installing NODE JS required for JupyterLab Widgets Extension | ||
RUN apt install nodejs npm | ||
|
||
#Installing JypyterLab Widgets Extension | ||
#https://ipywidgets.readthedocs.io/en/stable/user_install.html#installing-the-jupyterlab-extension | ||
RUN jupyter labextension install @jupyter-widgets/jupyterlab-manager |