Commit 412e4e

2025-12-12 06:37:50 강세보: Change comfyui on amd method
comfyui.md ..
@@ 25,18 25,20 @@
cd .\Workspace\
git clone https://github.com/comfyanonymous/ComfyUI.git
cd ComfyUI
- uv init
uv venv --python python3.12
- uv pip install --no-cache-dir `
+ uv add pip
+ . .\.venv\Scripts\activate
+ pip install --no-cache-dir `
https://repo.radeon.com/rocm/windows/rocm-rel-7.1.1/rocm_sdk_core-0.1.dev0-py3-none-win_amd64.whl `
https://repo.radeon.com/rocm/windows/rocm-rel-7.1.1/rocm_sdk_devel-0.1.dev0-py3-none-win_amd64.whl `
https://repo.radeon.com/rocm/windows/rocm-rel-7.1.1/rocm_sdk_libraries_custom-0.1.dev0-py3-none-win_amd64.whl `
https://repo.radeon.com/rocm/windows/rocm-rel-7.1.1/rocm-0.1.dev0.tar.gz
- uv pip install --no-cache-dir `
+ pip install --no-cache-dir `
https://repo.radeon.com/rocm/windows/rocm-rel-7.1.1/torch-2.9.0+rocmsdk20251116-cp312-cp312-win_amd64.whl `
https://repo.radeon.com/rocm/windows/rocm-rel-7.1.1/torchaudio-2.9.0+rocmsdk20251116-cp312-cp312-win_amd64.whl `
https://repo.radeon.com/rocm/windows/rocm-rel-7.1.1/torchvision-0.24.0+rocmsdk20251116-cp312-cp312-win_amd64.whl
- uv pip install -r requirements.txt
- uv pip install -r manager_requirements.txt
- uv run main.py --enable-manager
+ python -c "import torch; print(torch.cuda.is_available())"
+ pip install -r requirements.txt
+ pip install -r manager_requirements.txt
+ python main.py --enable-manager
```
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9