Commit 1d374670 authored by Justin Tyberg's avatar Justin Tyberg Committed by GitHub

Merge pull request #249 from midnightradio/master

add sqlalchemy to conda install command
parents 882f1adb ebbaaa15
...@@ -34,9 +34,11 @@ RUN conda install --quiet --yes \ ...@@ -34,9 +34,11 @@ RUN conda install --quiet --yes \
'dill=0.2*' \ 'dill=0.2*' \
'numba=0.23*' \ 'numba=0.23*' \
'bokeh=0.11*' \ 'bokeh=0.11*' \
'sqlalchemy=1.0*' \
'h5py=2.5*' && \ 'h5py=2.5*' && \
conda remove --quiet --yes --force qt pyqt && \ conda remove --quiet --yes --force qt pyqt && \
conda clean -tipsy conda clean -tipsy
# Activate ipywidgets extension in the environment that runs the notebook server # Activate ipywidgets extension in the environment that runs the notebook server
RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix
...@@ -62,6 +64,7 @@ RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \ ...@@ -62,6 +64,7 @@ RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'numba=0.23*' \ 'numba=0.23*' \
'bokeh=0.11*' \ 'bokeh=0.11*' \
'h5py=2.5*' \ 'h5py=2.5*' \
'sqlalchemy=1.0*' \
'pyzmq' && \ 'pyzmq' && \
conda remove -n python2 --quiet --yes --force qt pyqt && \ conda remove -n python2 --quiet --yes --force qt pyqt && \
conda clean -tipsy conda clean -tipsy
......
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