Compare commits

...
Sign in to create a new pull request.

7 commits

2 changed files with 67 additions and 25 deletions

View file

@ -145,9 +145,11 @@ def setup():
raise typer.Exit(1) raise typer.Exit(1)
if platform.system() == "Windows": if platform.system() == "Windows":
subprocess.run( result = subprocess.run(
["powershell", "-ExecutionPolicy", "Bypass", "-File", str(script)], ["powershell", "-ExecutionPolicy", "Bypass", "-File", str(script)],
check = True,
) )
else: else:
subprocess.run(["bash", str(script)], check = True) result = subprocess.run(["bash", str(script)])
if result.returncode != 0:
raise typer.Exit(result.returncode)

View file

@ -217,7 +217,11 @@ Write-Host "+==============================================+" -ForegroundColor G
# ============================================ # ============================================
# 1a. GPU requirement check # 1a. GPU requirement check
# ============================================ # ============================================
$HasNvidiaSmi = $null -ne (Get-Command nvidia-smi -ErrorAction SilentlyContinue) $HasNvidiaSmi = $false
try {
nvidia-smi 2>&1 | Out-Null
if ($LASTEXITCODE -eq 0) { $HasNvidiaSmi = $true }
} catch {}
if (-not $HasNvidiaSmi) { if (-not $HasNvidiaSmi) {
Write-Host "" Write-Host ""
Write-Host "[ERROR] Unsloth Studio requires an NVIDIA GPU." -ForegroundColor Red Write-Host "[ERROR] Unsloth Studio requires an NVIDIA GPU." -ForegroundColor Red
@ -409,22 +413,46 @@ if (-not $NvccPath) {
$HasWinget = $null -ne (Get-Command winget -ErrorAction SilentlyContinue) $HasWinget = $null -ne (Get-Command winget -ErrorAction SilentlyContinue)
if ($HasWinget) { if ($HasWinget) {
if ($DriverMaxCuda) { if ($DriverMaxCuda) {
# Try descending compatible versions # Query winget for available CUDA Toolkit versions
$drMajor = [int]$DriverMaxCuda.Split('.')[0] $drMajor = [int]$DriverMaxCuda.Split('.')[0]
$drMinor = [int]$DriverMaxCuda.Split('.')[1] $drMinor = [int]$DriverMaxCuda.Split('.')[1]
for ($m = $drMinor; $m -ge 0; $m--) { $AvailableVersions = @()
$ver = "$drMajor.$m" try {
Write-Host " Trying CUDA Toolkit $ver via winget..." -ForegroundColor Cyan $rawOutput = winget show Nvidia.CUDA --versions --accept-source-agreements 2>&1 | Out-String
# Parse version lines (e.g. "12.6", "12.5", "11.8")
foreach ($line in $rawOutput -split "`n") {
$line = $line.Trim()
if ($line -match '^\d+\.\d+') {
$AvailableVersions += $line
}
}
} catch {}
# Filter to compatible versions (<= driver max) and pick the highest
$BestVersion = $null
foreach ($ver in $AvailableVersions) {
$parts = $ver.Split('.')
$vMajor = [int]$parts[0]
$vMinor = [int]$parts[1]
if ($vMajor -lt $drMajor -or ($vMajor -eq $drMajor -and $vMinor -le $drMinor)) {
$BestVersion = $ver
break # list is descending, first match is highest compatible
}
}
if ($BestVersion) {
Write-Host " Installing CUDA Toolkit $BestVersion via winget... " -ForegroundColor Cyan
$prevEAPCuda = $ErrorActionPreference $prevEAPCuda = $ErrorActionPreference
$ErrorActionPreference = "Continue" $ErrorActionPreference = "Continue"
winget install --id=Nvidia.CUDA --version=$ver -e --source winget --accept-package-agreements --accept-source-agreements 2>&1 | Out-Null winget install --id=Nvidia.CUDA --version=$BestVersion -e --source winget --accept-package-agreements --accept-source-agreements 2>&1 | Out-Null
$ErrorActionPreference = $prevEAPCuda $ErrorActionPreference = $prevEAPCuda
Refresh-Environment Refresh-Environment
$NvccPath = Find-Nvcc -MaxVersion $DriverMaxCuda $NvccPath = Find-Nvcc -MaxVersion $DriverMaxCuda
if ($NvccPath) { if ($NvccPath) {
Write-Host " [OK] CUDA Toolkit $ver installed (nvcc: $NvccPath)" -ForegroundColor Green Write-Host " [OK] CUDA Toolkit $BestVersion installed (nvcc: $NvccPath)" -ForegroundColor Green
break
} }
} else {
Write-Host " [WARN] No compatible CUDA Toolkit version found in winget (need <= $DriverMaxCuda)" -ForegroundColor Yellow
} }
} else { } else {
Write-Host " Installing CUDA Toolkit (latest) via winget..." -ForegroundColor Cyan Write-Host " Installing CUDA Toolkit (latest) via winget..." -ForegroundColor Cyan
@ -566,6 +594,24 @@ if ($HasPython) {
$PythonOk = $true $PythonOk = $true
} }
# Ensure Python Scripts dir is on PATH (so 'unsloth' command works in new terminals)
$ScriptsDir = python -c "import sysconfig; print(sysconfig.get_path('scripts', 'nt_user') if __import__('os').path.exists(sysconfig.get_path('scripts', 'nt_user')) else sysconfig.get_path('scripts'))"
if ($LASTEXITCODE -eq 0 -and $ScriptsDir -and (Test-Path $ScriptsDir)) {
$UserPath = [Environment]::GetEnvironmentVariable('Path', 'User')
$UserPathEntries = if ($UserPath) { $UserPath.Split(';') } else { @() }
if (-not ($UserPathEntries | Where-Object { $_.TrimEnd('\') -eq $ScriptsDir })) {
$newUserPath = if ($UserPath) { "$ScriptsDir;$UserPath" } else { $ScriptsDir }
[Environment]::SetEnvironmentVariable('Path', $newUserPath, 'User')
# Also add to current process so it's available immediately
$ProcessPathEntries = $env:PATH.Split(';')
if (-not ($ProcessPathEntries | Where-Object { $_.TrimEnd('\') -eq $ScriptsDir })) {
$env:PATH = "$ScriptsDir;$env:PATH"
}
Write-Host " Persisted Python Scripts dir to user PATH: $ScriptsDir" -ForegroundColor Gray
}
}
Write-Host "" Write-Host ""
Write-Host "--- System prerequisites ready ---" -ForegroundColor Green Write-Host "--- System prerequisites ready ---" -ForegroundColor Green
Write-Host "" Write-Host ""
@ -631,12 +677,12 @@ Write-Host "Setting up Python environment..." -ForegroundColor Cyan
# Find Python # Find Python
$PythonCmd = $null $PythonCmd = $null
foreach ($candidate in @("python3.12", "python3.11", "python3.10", "python3.9", "python3", "python")) { foreach ($candidate in @("python3.13", "python3.12", "python3.11", "python3", "python")) {
try { try {
$ver = & $candidate --version 2>&1 $ver = & $candidate --version 2>&1
if ($ver -match 'Python 3\.(\d+)') { if ($ver -match 'Python 3\.(\d+)') {
$minor = [int]$Matches[1] $minor = [int]$Matches[1]
if ($minor -le 12) { if ($minor -ge 11 -and $minor -le 13) {
$PythonCmd = $candidate $PythonCmd = $candidate
break break
} }
@ -645,7 +691,7 @@ foreach ($candidate in @("python3.12", "python3.11", "python3.10", "python3.9",
} }
if (-not $PythonCmd) { if (-not $PythonCmd) {
Write-Host "[ERROR] No Python <= 3.12 found." -ForegroundColor Red Write-Host "[ERROR] No Python 3.11-3.13 found." -ForegroundColor Red
exit 1 exit 1
} }
@ -833,14 +879,14 @@ if (Test-Path $LlamaServerBin) {
if (Test-Path (Join-Path $LlamaCppDir ".git")) { if (Test-Path (Join-Path $LlamaCppDir ".git")) {
Write-Host " llama.cpp repo already cloned, pulling latest..." -ForegroundColor Gray Write-Host " llama.cpp repo already cloned, pulling latest..." -ForegroundColor Gray
git -C $LlamaCppDir pull git -C $LlamaCppDir pull 2>&1 | Out-Null
if ($LASTEXITCODE -ne 0) { if ($LASTEXITCODE -ne 0) {
Write-Host " [WARN] git pull failed -- using existing source" -ForegroundColor Yellow Write-Host " [WARN] git pull failed -- using existing source" -ForegroundColor Yellow
} }
} else { } else {
Write-Host " Cloning llama.cpp..." -ForegroundColor Gray Write-Host " Cloning llama.cpp..." -ForegroundColor Gray
if (Test-Path $LlamaCppDir) { Remove-Item -Recurse -Force $LlamaCppDir } if (Test-Path $LlamaCppDir) { Remove-Item -Recurse -Force $LlamaCppDir }
git clone --depth 1 https://github.com/ggml-org/llama.cpp.git $LlamaCppDir git clone --depth 1 https://github.com/ggml-org/llama.cpp.git $LlamaCppDir 2>&1 | Out-Null
if ($LASTEXITCODE -ne 0) { if ($LASTEXITCODE -ne 0) {
$BuildOk = $false $BuildOk = $false
$FailedStep = "git clone" $FailedStep = "git clone"
@ -885,13 +931,7 @@ if (Test-Path $LlamaServerBin) {
$CmakeArgs += "-DCMAKE_CUDA_ARCHITECTURES=$CudaArch" $CmakeArgs += "-DCMAKE_CUDA_ARCHITECTURES=$CudaArch"
} }
Write-Host " cmake args:" -ForegroundColor Gray cmake @CmakeArgs 2>&1 | Out-Null
foreach ($arg in $CmakeArgs) {
Write-Host " $arg" -ForegroundColor Gray
}
Write-Host ""
cmake @CmakeArgs
if ($LASTEXITCODE -ne 0) { if ($LASTEXITCODE -ne 0) {
$BuildOk = $false $BuildOk = $false
$FailedStep = "cmake configure" $FailedStep = "cmake configure"
@ -908,7 +948,7 @@ if (Test-Path $LlamaServerBin) {
Write-Host " Parallel jobs: $NumCpu" -ForegroundColor Gray Write-Host " Parallel jobs: $NumCpu" -ForegroundColor Gray
Write-Host "" Write-Host ""
cmake --build $BuildDir --config Release --target llama-server -j $NumCpu cmake --build $BuildDir --config Release --target llama-server -j $NumCpu 2>&1 | Out-Null
if ($LASTEXITCODE -ne 0) { if ($LASTEXITCODE -ne 0) {
$BuildOk = $false $BuildOk = $false
$FailedStep = "cmake build (llama-server)" $FailedStep = "cmake build (llama-server)"
@ -919,7 +959,7 @@ if (Test-Path $LlamaServerBin) {
if ($BuildOk) { if ($BuildOk) {
Write-Host "" Write-Host ""
Write-Host "--- cmake build (llama-quantize) ---" -ForegroundColor Cyan Write-Host "--- cmake build (llama-quantize) ---" -ForegroundColor Cyan
cmake --build $BuildDir --config Release --target llama-quantize -j $NumCpu cmake --build $BuildDir --config Release --target llama-quantize -j $NumCpu 2>&1 | Out-Null
if ($LASTEXITCODE -ne 0) { if ($LASTEXITCODE -ne 0) {
Write-Host " [WARN] llama-quantize build failed (GGUF export may be unavailable)" -ForegroundColor Yellow Write-Host " [WARN] llama-quantize build failed (GGUF export may be unavailable)" -ForegroundColor Yellow
} }