From 5bb5b2324740acdfefea6444126dfeda0ad2ae2f Mon Sep 17 00:00:00 2001 From: Wei Ji Date: Tue, 22 Oct 2019 14:23:39 +1300 Subject: [PATCH] :wrench: Improve conda interoperability with pip Allow conda to see pip packages. See https://github.com/conda/conda/blob/767d8016ba0327c652a4d57232f47eb15c815766/docs/source/user-guide/configuration/pip-interoperability.rst --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2f0e7e5..1458f84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,7 @@ RUN cd /tmp && \ $CONDA_DIR/bin/conda config --system --prepend channels conda-forge && \ $CONDA_DIR/bin/conda config --system --set auto_update_conda false && \ $CONDA_DIR/bin/conda config --system --set show_channel_urls true && \ + $CONDA_DIR/bin/conda config --system --set pip_interop_enabled true && \ $CONDA_DIR/bin/conda clean --all --quiet --yes && \ $CONDA_DIR/bin/conda init --verbose