From 51e6dcdcd4c1a69318f3818a7cb153f7221ad07f Mon Sep 17 00:00:00 2001 From: 0cc4m Date: Sun, 7 May 2023 06:42:32 +0200 Subject: [PATCH] Revert accidental install_requirements change --- install_requirements.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_requirements.sh b/install_requirements.sh index 561b1b00..6e37c7e9 100755 --- a/install_requirements.sh +++ b/install_requirements.sh @@ -5,14 +5,14 @@ if [[ $1 = "cuda" || $1 = "CUDA" ]]; then wget -qO- https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar -xvj bin/micromamba bin/micromamba create -f environments/huggingface.yml -r runtime -n koboldai -y # Weird micromamba bug causes it to fail the first time, running it twice just to be safe, the second time is much faster -# bin/micromamba create -f environments/huggingface.yml -r runtime -n koboldai -y +bin/micromamba create -f environments/huggingface.yml -r runtime -n koboldai -y exit fi if [[ $1 = "rocm" || $1 = "ROCM" ]]; then wget -qO- https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar -xvj bin/micromamba bin/micromamba create -f environments/rocm.yml -r runtime -n koboldai-rocm -y # Weird micromamba bug causes it to fail the first time, running it twice just to be safe, the second time is much faster -# bin/micromamba create -f environments/rocm.yml -r runtime -n koboldai-rocm -y +bin/micromamba create -f environments/rocm.yml -r runtime -n koboldai-rocm -y exit fi echo Please specify either CUDA or ROCM