From 5e388f931e4b30a911ee5fe49421e89f6c5f81bb Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Mon, 25 Sep 2023 17:56:43 -0700 Subject: [PATCH] check cuda installed before installing --- scripts/install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 2c713d40..ba2e8853 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -117,6 +117,11 @@ check_gpu() { esac } +if check_gpu nvidia-smi; then + status "NVIDIA GPU installed." + exit 0 +fi + if ! check_gpu lspci && ! check_gpu lshw; then warning "No NVIDIA GPU detected. Ollama will run in CPU-only mode." exit 0 @@ -228,3 +233,6 @@ if ! lsmod | grep -q nvidia; then $SUDO modprobe nvidia fi + + +status "NVIDIA GPU installed."