Commit ebbaaa15 authored by Hongjoo Lee's avatar Hongjoo Lee

remove mysql stuff

parent 28a1b369
......@@ -9,7 +9,6 @@ USER root
# libav-tools for matplotlib anim
RUN apt-get update && \
apt-get install -y --no-install-recommends libav-tools && \
apt-get install -y --no-install-recommends libmysqlclient-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
......@@ -40,10 +39,6 @@ RUN conda install --quiet --yes \
conda remove --quiet --yes --force qt pyqt && \
conda clean -tipsy
# Install mysqlclient for python 3 not by conda which couldn't find proper package
# name by pip instead.
RUN pip install -q --no-cache-dir mysqlclient==1.3.7
# Activate ipywidgets extension in the environment that runs the notebook server
RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix
......@@ -70,7 +65,6 @@ RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'bokeh=0.11*' \
'h5py=2.5*' \
'sqlalchemy=1.0*' \
'MySQL-python=1.2*' \
'pyzmq' && \
conda remove -n python2 --quiet --yes --force qt pyqt && \
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