Skip to content

Commit

Permalink
Merge pull request #192 from parente/notebook-4.2
Browse files Browse the repository at this point in the history
[WIP] Upgrade to notebook 4.2, ipywidgets 5.0
  • Loading branch information
jakirkham committed May 5, 2016
2 parents cdea2c8 + e14e387 commit 2bcf753
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 14 deletions.
2 changes: 1 addition & 1 deletion all-spark-notebook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## What it Gives You

* Jupyter Notebook 4.1.x
* Jupyter Notebook 4.2.x
* Conda Python 3.x and Python 2.7.x environments
* Conda R 3.2.x environment
* Scala 2.10.x
Expand Down
2 changes: 1 addition & 1 deletion datascience-notebook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## What it Gives You

* Jupyter Notebook 4.1.x
* Jupyter Notebook 4.2.x
* Conda Python 3.x and Python 2.7.x environments
* pandas, matplotlib, scipy, seaborn, scikit-learn, scikit-image, sympy, cython, patsy, statsmodel, cloudpickle, dill, numba, bokeh pre-installed
* Conda R v3.2.x and channel
Expand Down
2 changes: 1 addition & 1 deletion minimal-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RUN cd /tmp && \

# Install Jupyter notebook as jovyan
RUN conda install --quiet --yes \
'notebook=4.1*' \
'notebook=4.2*' \
terminado \
&& conda clean -tipsy

Expand Down
2 changes: 1 addition & 1 deletion minimal-notebook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## What it Gives You

* Jupyter Notebook 4.1.x
* Jupyter Notebook 4.2.x
* Conda Python 3.x
* No preinstalled scientific computing packages
* Unprivileged user `jovyan` (uid=1000, configurable, see options) in group `users` (gid=100) with ownership over `/home/jovyan` and `/opt/conda`
Expand Down
10 changes: 6 additions & 4 deletions pyspark-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,21 @@ USER jovyan

# Install Python 3 packages
RUN conda install --quiet --yes \
'ipywidgets=4.1*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
'scipy=0.17*' \
'seaborn=0.7*' \
'scikit-learn=0.17*' \
&& conda clean -tipsy

# Activate ipywidgets extension in the environment that runs the notebook server
RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix

# Install Python 2 packages and kernel spec
RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.1*' \
'ipywidgets=4.1*' \
'ipython=4.2*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
Expand Down
2 changes: 1 addition & 1 deletion pyspark-notebook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## What it Gives You

* Jupyter Notebook 4.1.x
* Jupyter Notebook 4.2.x
* Conda Python 3.x and Python 2.7.x environments
* pyspark, pandas, matplotlib, scipy, seaborn, scikit-learn pre-installed
* Spark 1.6.0 for use in local mode or to connect to a cluster of Spark workers
Expand Down
2 changes: 1 addition & 1 deletion r-notebook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## What it Gives You

* Jupyter Notebook 4.1.x
* Jupyter Notebook 4.2.x
* Conda R v3.2.x and channel
* plyr, devtools, dplyr, ggplot2, tidyr, shiny, rmarkdown, forecast, stringr, rsqlite, reshape2, nycflights13, caret, rcurl, and randomforest pre-installed
* Unprivileged user `jovyan` (uid=1000, configurable, see options) in group `users` (gid=100) with ownership over `/home/jovyan` and `/opt/conda`
Expand Down
8 changes: 5 additions & 3 deletions scipy-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ USER jovyan

# Install Python 3 packages
RUN conda install --quiet --yes \
'ipywidgets=4.1*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
Expand All @@ -34,11 +34,13 @@ RUN conda install --quiet --yes \
'bokeh=0.11*' \
'h5py=2.5*' \
&& conda clean -tipsy
# Activate ipywidgets extension in the environment that runs the notebook server
RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix

# Install Python 2 packages
RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.1*' \
'ipywidgets=4.1*' \
'ipython=4.2*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
Expand Down
2 changes: 1 addition & 1 deletion scipy-notebook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## What it Gives You

* Jupyter Notebook 4.1.x
* Jupyter Notebook 4.2.x
* Conda Python 3.x and Python 2.7.x environments
* pandas, matplotlib, scipy, seaborn, scikit-learn, scikit-image, sympy, cython, patsy, statsmodel, cloudpickle, dill, numba, bokeh pre-installed
* Unprivileged user `jovyan` (uid=1000, configurable, see options) in group `users` (gid=100) with ownership over `/home/jovyan` and `/opt/conda`
Expand Down

0 comments on commit 2bcf753

Please sign in to comment.