Commit 3f15f3bc authored by Matthias Bussonnier's avatar Matthias Bussonnier

Merge pull request #135 from jakirkham/conda_yes

Ensure conda works automatically
parents b3d786df 61dc40b2
......@@ -75,7 +75,7 @@ RUN conda install --yes \
&& conda clean -yt
# Install Python 2 packages and kernel spec
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.1*' \
'ipywidgets=4.1*' \
'pandas=0.17*' \
......
......@@ -48,7 +48,7 @@ RUN conda install --yes \
&& conda clean -yt
# Install Python 2 packages
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.1*' \
'ipywidgets=4.1*' \
'pandas=0.17*' \
......
......@@ -48,7 +48,7 @@ RUN conda install --yes \
&& conda clean -yt
# Install Python 2 packages and kernel spec
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.1*' \
'ipywidgets=4.1*' \
'pandas=0.17*' \
......
......@@ -34,7 +34,7 @@ RUN conda install --yes \
&& conda clean -yt
# Install Python 2 packages
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.1*' \
'ipywidgets=4.1*' \
'pandas=0.17*' \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment