From cb5f67ee513a04e542c95027b5f0bfc640312ab2 Mon Sep 17 00:00:00 2001 From: Naveen Marri Date: Sat, 2 Sep 2017 20:19:57 -0400 Subject: [PATCH 1/3] Added support for facets visualization --- scipy-notebook/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index 130d624e..2819985c 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -40,6 +40,7 @@ RUN conda install --quiet --yes \ 'h5py=2.6*' \ 'vincent=0.4.*' \ 'beautifulsoup4=4.5.*' \ + 'protobuf=3.*' \ 'xlrd' && \ conda remove --quiet --yes --force qt pyqt && \ conda clean -tipsy && \ @@ -47,6 +48,10 @@ RUN conda install --quiet --yes \ jupyter nbextension enable --py widgetsnbextension --sys-prefix && \ fix-permissions $CONDA_DIR +RUN git clone https://github.com/PAIR-code/facets.git +WORKDIR facets +RUN jupyter nbextension install facets-dist/ --user + # Import matplotlib the first time to build the font cache. ENV XDG_CACHE_HOME /home/$NB_USER/.cache/ RUN MPLBACKEND=Agg python -c "import matplotlib.pyplot" && \ From 3b9135df573c1ea780c3907c4d5e60dafeb9ef73 Mon Sep 17 00:00:00 2001 From: Naveen Marri Date: Fri, 8 Sep 2017 19:10:59 -0400 Subject: [PATCH 2/3] changed the sys-prefix --- scipy-notebook/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index 0f090845..9952eed0 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -50,7 +50,7 @@ RUN conda install --quiet --yes \ RUN git clone https://github.com/PAIR-code/facets.git WORKDIR facets -RUN jupyter nbextension install facets-dist/ --user +RUN jupyter nbextension install --py facets-dist/ --sys-prefix # Import matplotlib the first time to build the font cache. ENV XDG_CACHE_HOME /home/$NB_USER/.cache/ From 6bbf0939a03772804b19520dacb1db851e304ff3 Mon Sep 17 00:00:00 2001 From: Naveen Marri Date: Fri, 8 Sep 2017 22:27:25 -0400 Subject: [PATCH 3/3] changed the sys-prefix --- scipy-notebook/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index 9952eed0..1e57aee6 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -50,7 +50,7 @@ RUN conda install --quiet --yes \ RUN git clone https://github.com/PAIR-code/facets.git WORKDIR facets -RUN jupyter nbextension install --py facets-dist/ --sys-prefix +RUN jupyter nbextension install facets-dist/ --sys-prefix # Import matplotlib the first time to build the font cache. ENV XDG_CACHE_HOME /home/$NB_USER/.cache/