From 030df1a09f879daf9eca4f1e17b15ffc84c6e1c2 Mon Sep 17 00:00:00 2001 From: Henk Date: Sat, 7 May 2022 20:22:33 +0200 Subject: [PATCH] Small installer fix --- play-rocm.sh | 2 +- play.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/play-rocm.sh b/play-rocm.sh index 351af73a..186cdc99 100755 --- a/play-rocm.sh +++ b/play-rocm.sh @@ -1,4 +1,4 @@ if [ ! -f "runtime/envs/koboldai-rocm/bin/python" ]; then -source ./install_requirements.sh rocm +./install_requirements.sh rocm fi bin/micromamba run -r runtime -n koboldai-rocm python aiserver.py $* diff --git a/play.sh b/play.sh index 5e1fe2e0..dc411b82 100755 --- a/play.sh +++ b/play.sh @@ -1,4 +1,4 @@ if [ ! -f "runtime/envs/koboldai/bin/python" ]; then -source ./install_requirements.sh cuda +./install_requirements.sh cuda fi bin/micromamba run -r runtime -n koboldai python aiserver.py $*