From 8407c526e890a83e80e002feaaa220d3730a6580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Thu, 4 Jul 2019 11:19:55 +0200 Subject: [PATCH] install-with-conda: de-prioritize conda-forge --- install-with-conda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-with-conda.py b/install-with-conda.py index 4be537cd0..8d9fb99cf 100644 --- a/install-with-conda.py +++ b/install-with-conda.py @@ -30,8 +30,8 @@ def run(command): raise SystemExit("command '{}' returned non-zero exit status: {}".format(command, r)) if ADD_CHANNELS: - run("conda config --add channels m-labs") - run("conda config --add channels conda-forge") + run("conda config --prepend channels m-labs") + run("conda config --append channels conda-forge") run("conda install -y conda-build curl") # A questionable conda decision is to ignore dependencies when installing .tar.bz2's directly.