From 75f23793df9c177253b706dd6055a9e8061b5c1c Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Wed, 12 Oct 2022 23:01:08 +0530 Subject: [PATCH] Remove -y in linux script --- installer/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/install.sh b/installer/install.sh index 8485c9d7e5..9dd1c03a22 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -69,9 +69,9 @@ fi # create the environment if [ "$OS_NAME" == "mac" ]; then - PIP_EXISTS_ACTION=w CONDA_SUBDIR=osx-arm64 conda env create -y -f environment-mac.yml + PIP_EXISTS_ACTION=w CONDA_SUBDIR=osx-arm64 conda env create -f environment-mac.yml else - conda env create -y -f environment.yml + conda env create -f environment.yml fi conda activate invokeai