From 83f20c23aa829c1bddda4c9fba3801928b0435a2 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Fri, 14 Oct 2022 10:23:55 +0530 Subject: [PATCH] Use the correct conda os arch for mac x64 --- installer/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/install.sh b/installer/install.sh index bbc606bb97..6090c2374d 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -78,6 +78,7 @@ CONDA_BASEPATH=$(conda info --base) source "$CONDA_BASEPATH/etc/profile.d/conda.sh" # otherwise conda complains about 'shell not initialized' (needed when running in a script) if [ "$OS_NAME" == "mac" ]; then + if [ "$OS_ARCH" == "x64" ]; then OS_ARCH="64"; fi PIP_EXISTS_ACTION=w CONDA_SUBDIR=osx-${OS_ARCH} conda env create -f environment-mac.yml else conda env create -f environment.yml