Migrate to miniforge, add missing dependencies, update docker file, remove deprecated files (#2732)

* Migrate to miniforge, add missing dependencies, update docker file, remove deprecated files

* Add Env Vars and Secrets
This commit is contained in:
XXXXRT666
2026-02-09 15:05:25 +08:00
committed by GitHub
parent 9986880b3f
commit 2d9193b0d3
10 changed files with 117 additions and 348 deletions
+3 -3
View File
@@ -209,15 +209,15 @@ if ($DownloadUVR5) {
switch ($Device) {
"CU128" {
Write-Info "Installing PyTorch For CUDA 12.8..."
Invoke-Pip torch torchaudio --index-url "https://download.pytorch.org/whl/cu128"
Invoke-Pip torch torchcodec --index-url "https://download.pytorch.org/whl/cu128"
}
"CU126" {
Write-Info "Installing PyTorch For CUDA 12.6..."
Invoke-Pip torch torchaudio --index-url "https://download.pytorch.org/whl/cu126"
Invoke-Pip torch torchcodec --index-url "https://download.pytorch.org/whl/cu126"
}
"CPU" {
Write-Info "Installing PyTorch For CPU..."
Invoke-Pip torch torchaudio --index-url "https://download.pytorch.org/whl/cpu"
Invoke-Pip torch torchcodec --index-url "https://download.pytorch.org/whl/cpu"
}
}
Write-Success "PyTorch Installed"