Remove -y in linux script

This commit is contained in:
cmdr2 2022-10-12 23:01:08 +05:30
parent 9dcfa8de25
commit 75f23793df

View File

@ -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