From d6e6fa56d371e3cb5319ced28ac0103f5a4a3407 Mon Sep 17 00:00:00 2001 From: xor_s <7405226+xor_s@user.noreply.gitee.com> Date: Fri, 15 May 2026 17:30:03 +0800 Subject: [PATCH] fix: the justfile syntax errror, GPU information cannot be read --- justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index d178d166..c6d7c968 100644 --- a/justfile +++ b/justfile @@ -69,10 +69,10 @@ setup-python: } Write-Host "Installing Python dependencies..." & "{{ python }}" -m pip install --upgrade pip -q - $gpus = Get-CimInstance Win32_VideoController | Select-Object -ExpandProperty Name - Write-Host "Detected GPUs: $($gpus -join ', ')" - $hasNvidia = ($gpus | Where-Object { $_ -match 'NVIDIA' }).Count -gt 0 - $hasIntelArc = ($gpus | Where-Object { $_ -match 'Arc' }).Count -gt 0 + $gpus = Get-CimInstance Win32_VideoController | Select-Object -ExpandProperty Name; \ + Write-Host "Detected GPUs: $($gpus -join ', ')"; \ + $hasNvidia = ($gpus | Where-Object { $_ -match 'NVIDIA' }).Count -gt 0; \ + $hasIntelArc = ($gpus | Where-Object { $_ -match 'Arc' }).Count -gt 0; \ if ($hasNvidia) { \ Write-Host "NVIDIA GPU detected — installing PyTorch with CUDA support..."; \ & "{{ pip }}" install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128; \