Jeffrey Morgan
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
scripts/install.sh
|
|
|
@ -134,7 +134,7 @@ fi |
|
|
|
# WSL2 only supports GPUs via nvidia passthrough |
|
|
|
# so check for nvidia-smi to determine if GPU is available |
|
|
|
if [ "$IS_WSL2" = true ]; then |
|
|
|
if available nvidia-smi && [ -z "$(nvidia-smi | grep -o "CUDA Version: [0-9]*\.[0-9]*")" ]; then |
|
|
|
if available nvidia-smi && [ -n "$(nvidia-smi | grep -o "CUDA Version: [0-9]*\.[0-9]*")" ]; then |
|
|
|
status "Nvidia GPU detected." |
|
|
|
fi |
|
|
|
install_success |
|
|
|
|