stop removing qt

it makes the conda env invalid, which causes errors in later installs
This commit is contained in:
Min RK
2019-07-09 10:46:25 +02:00
parent 50ae9cdea4
commit 5eca3cae6c
2 changed files with 1 additions and 4 deletions

View File

@@ -15,8 +15,6 @@ RUN apt-get update && \
USER $NB_UID
# Install Python 3 packages
# Remove pyqt and qt pulled in for matplotlib since we're only ever going to
# use notebook-friendly backends in these images
RUN conda install --quiet --yes \
'conda-forge::blas=*=openblas' \
'ipywidgets=7.4*' \
@@ -43,7 +41,6 @@ RUN conda install --quiet --yes \
'beautifulsoup4=4.7.*' \
'protobuf=3.7.*' \
'xlrd' && \
conda remove --quiet --yes --force qt pyqt && \
conda clean --all -f -y && \
# Activate ipywidgets extension in the environment that runs the notebook server
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \