Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
2bcf753a
Commit
2bcf753a
authored
May 05, 2016
by
jakirkham
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #192 from parente/notebook-4.2
[WIP] Upgrade to notebook 4.2, ipywidgets 5.0
parents
cdea2c8f
e14e387d
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
14 deletions
+18
-14
all-spark-notebook/README.md
all-spark-notebook/README.md
+1
-1
datascience-notebook/README.md
datascience-notebook/README.md
+1
-1
minimal-notebook/Dockerfile
minimal-notebook/Dockerfile
+1
-1
minimal-notebook/README.md
minimal-notebook/README.md
+1
-1
pyspark-notebook/Dockerfile
pyspark-notebook/Dockerfile
+6
-4
pyspark-notebook/README.md
pyspark-notebook/README.md
+1
-1
r-notebook/README.md
r-notebook/README.md
+1
-1
scipy-notebook/Dockerfile
scipy-notebook/Dockerfile
+5
-3
scipy-notebook/README.md
scipy-notebook/README.md
+1
-1
No files found.
all-spark-notebook/README.md
View file @
2bcf753a
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
## What it Gives You
## 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 Python 3.x and Python 2.7.x environments
*
Conda R 3.2.x environment
*
Conda R 3.2.x environment
*
Scala 2.10.x
*
Scala 2.10.x
...
...
datascience-notebook/README.md
View file @
2bcf753a
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
## What it Gives You
## 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 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
*
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
*
Conda R v3.2.x and channel
...
...
minimal-notebook/Dockerfile
View file @
2bcf753a
...
@@ -79,7 +79,7 @@ RUN cd /tmp && \
...
@@ -79,7 +79,7 @@ RUN cd /tmp && \
# Install Jupyter notebook as jovyan
# Install Jupyter notebook as jovyan
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'notebook=4.
1
*'
\
'notebook=4.
2
*'
\
terminado
\
terminado
\
&&
conda clean
-tipsy
&&
conda clean
-tipsy
...
...
minimal-notebook/README.md
View file @
2bcf753a
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
## What it Gives You
## What it Gives You
*
Jupyter Notebook 4.
1
.x
*
Jupyter Notebook 4.
2
.x
*
Conda Python 3.x
*
Conda Python 3.x
*
No preinstalled scientific computing packages
*
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`
*
Unprivileged user
`jovyan`
(uid=1000, configurable, see options) in group
`users`
(gid=100) with ownership over
`/home/jovyan`
and
`/opt/conda`
...
...
pyspark-notebook/Dockerfile
View file @
2bcf753a
...
@@ -46,7 +46,7 @@ USER jovyan
...
@@ -46,7 +46,7 @@ USER jovyan
# Install Python 3 packages
# Install Python 3 packages
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'ipywidgets=
4
.1*'
\
'ipywidgets=
5
.1*'
\
'pandas=0.17*'
\
'pandas=0.17*'
\
'numexpr=2.5*'
\
'numexpr=2.5*'
\
'matplotlib=1.5*'
\
'matplotlib=1.5*'
\
...
@@ -54,11 +54,13 @@ RUN conda install --quiet --yes \
...
@@ -54,11 +54,13 @@ RUN conda install --quiet --yes \
'seaborn=0.7*'
\
'seaborn=0.7*'
\
'scikit-learn=0.17*'
\
'scikit-learn=0.17*'
\
&&
conda clean
-tipsy
&&
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
# Install Python 2 packages and kernel spec
RUN
conda create
--quiet
--yes
-p
$CONDA_DIR
/envs/python2
python
=
2.7
\
RUN
conda create
--quiet
--yes
-p
$CONDA_DIR
/envs/python2
python
=
2.7
\
'ipython=4.
1
*'
\
'ipython=4.
2
*'
\
'ipywidgets=
4
.1*'
\
'ipywidgets=
5
.1*'
\
'pandas=0.17*'
\
'pandas=0.17*'
\
'numexpr=2.5*'
\
'numexpr=2.5*'
\
'matplotlib=1.5*'
\
'matplotlib=1.5*'
\
...
...
pyspark-notebook/README.md
View file @
2bcf753a
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
## What it Gives You
## 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 Python 3.x and Python 2.7.x environments
*
pyspark, pandas, matplotlib, scipy, seaborn, scikit-learn pre-installed
*
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
*
Spark 1.6.0 for use in local mode or to connect to a cluster of Spark workers
...
...
r-notebook/README.md
View file @
2bcf753a
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
## What it Gives You
## What it Gives You
*
Jupyter Notebook 4.
1
.x
*
Jupyter Notebook 4.
2
.x
*
Conda R v3.2.x and channel
*
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
*
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`
*
Unprivileged user
`jovyan`
(uid=1000, configurable, see options) in group
`users`
(gid=100) with ownership over
`/home/jovyan`
and
`/opt/conda`
...
...
scipy-notebook/Dockerfile
View file @
2bcf753a
...
@@ -16,7 +16,7 @@ USER jovyan
...
@@ -16,7 +16,7 @@ USER jovyan
# Install Python 3 packages
# Install Python 3 packages
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'ipywidgets=
4
.1*'
\
'ipywidgets=
5
.1*'
\
'pandas=0.17*'
\
'pandas=0.17*'
\
'numexpr=2.5*'
\
'numexpr=2.5*'
\
'matplotlib=1.5*'
\
'matplotlib=1.5*'
\
...
@@ -34,11 +34,13 @@ RUN conda install --quiet --yes \
...
@@ -34,11 +34,13 @@ RUN conda install --quiet --yes \
'bokeh=0.11*'
\
'bokeh=0.11*'
\
'h5py=2.5*'
\
'h5py=2.5*'
\
&&
conda clean
-tipsy
&&
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
# Install Python 2 packages
RUN
conda create
--quiet
--yes
-p
$CONDA_DIR
/envs/python2
python
=
2.7
\
RUN
conda create
--quiet
--yes
-p
$CONDA_DIR
/envs/python2
python
=
2.7
\
'ipython=4.
1
*'
\
'ipython=4.
2
*'
\
'ipywidgets=
4
.1*'
\
'ipywidgets=
5
.1*'
\
'pandas=0.17*'
\
'pandas=0.17*'
\
'numexpr=2.5*'
\
'numexpr=2.5*'
\
'matplotlib=1.5*'
\
'matplotlib=1.5*'
\
...
...
scipy-notebook/README.md
View file @
2bcf753a
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
## What it Gives You
## 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 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
*
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`
*
Unprivileged user
`jovyan`
(uid=1000, configurable, see options) in group
`users`
(gid=100) with ownership over
`/home/jovyan`
and
`/opt/conda`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment