mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-06 20:53:53 +02:00
Update ComfyUI PyTorch versions to match upstream recommendations
- NVIDIA: cu128 → cu130 (requires driver ≥ 570) - AMD: rocm6.3 → rocm6.4 (stable version) - Intel: xpu (unchanged, already matches upstream) Fixes NVML version mismatch issues when host driver is upgraded Aligns with ComfyUI upstream: https://github.com/Comfy-Org/ComfyUI#manual-install-windows-linux
This commit is contained in:
@@ -42,14 +42,14 @@ if [[ "${comfyui_gpu_type,,}" == "nvidia" ]]; then
|
|||||||
torch \
|
torch \
|
||||||
torchvision \
|
torchvision \
|
||||||
torchaudio \
|
torchaudio \
|
||||||
--extra-index-url "https://download.pytorch.org/whl/cu128" \
|
--extra-index-url "https://download.pytorch.org/whl/cu130" \
|
||||||
--python="/opt/ComfyUI/venv/bin/python"
|
--python="/opt/ComfyUI/venv/bin/python"
|
||||||
elif [[ "${comfyui_gpu_type,,}" == "amd" ]]; then
|
elif [[ "${comfyui_gpu_type,,}" == "amd" ]]; then
|
||||||
$STD uv pip install \
|
$STD uv pip install \
|
||||||
torch \
|
torch \
|
||||||
torchvision \
|
torchvision \
|
||||||
torchaudio \
|
torchaudio \
|
||||||
--index-url "https://download.pytorch.org/whl/rocm6.3" \
|
--index-url "https://download.pytorch.org/whl/rocm6.4" \
|
||||||
--python="/opt/ComfyUI/venv/bin/python"
|
--python="/opt/ComfyUI/venv/bin/python"
|
||||||
elif [[ "${comfyui_gpu_type,,}" == "intel" ]]; then
|
elif [[ "${comfyui_gpu_type,,}" == "intel" ]]; then
|
||||||
$STD uv pip install \
|
$STD uv pip install \
|
||||||
|
|||||||
Reference in New Issue
Block a user