얕고 넓게

[AI] ComfyUI 2/2 @Windows11 본문

IT/AI.ML

[AI] ComfyUI 2/2 @Windows11

블랙오닉스 2025. 9. 30. 23:54

2025.09.30

ComfyUI + Manager + PyTorch(2.8 + CUDA12.8) + 기본 checkout 다운로드(real)

다음은 Triton, SageAttention,...

pip install -U "triton-windows<3.5"
python -c "import triton; print('triton ok')"
# ✅ triton ok

pip install "D:\AI\xformers-0.0.32.post2-cp39-abi3-win_amd64.whl"
python -c "import xformers; print('xformers ok')"
python -m xformers.info
# ✅ memory_efficient_attention 등 available

pip install "sageattention-2.2.0+cu128torch2.8.0-cp311-cp311-win_amd64.whl"
python -c "import sageattention; print('sage ok')"
# ✅ sage ok

*.whl설치 하려고 하니 파일이 없다고 한다.

*.whl 다운받으라는 설명이 없었는데?

구글링

https://download.pytorch.org/whl/xformers/

 

https://download.pytorch.org/whl/xformers/

 

download.pytorch.org

https://download.pytorch.org/whl/cu128/xformers-0.0.32.post2-cp39-abi3-win_amd64.whl

같은 이름이 여러개인데 CUDA버전이 다르다. 조심해서 선택?

설치 완료

 

https://github.com/sdbds/SageAttention-for-windows/releases/tag/2.20_torch280%2Bcu128

 

Release sageattn2.20_torch280+cu128 · sdbds/SageAttention-for-windows

sageattn2.20_torch280+cu128 Merge branch 'main' of https://github.com/thu-ml/SageAttention

github.com

여러 버전이 있는데 이거같다.

에러??

(venv_comfyui) PS D:\AI> pip install "sageattention-2.2.0+cu128torch2.8.0-cp311-cp311-win_amd64.whl"
ERROR: sageattention-2.2.0+cu128torch2.8.0-cp311-cp311-win_amd64.whl is not a supported wheel on this platform.

 

AI에게 물어보니 일단 Python 버전인 3.11이 아니라 생긴 문제 같다고 함.

가상환경 마이그레이션은 불가능한 것 같네.

패키지 정보 저장후 venv_comfyui311로 가상환경 생성후 다시 패키지 설치

 

 

 

'IT > AI.ML' 카테고리의 다른 글

[AI] ComfyUI 4/2 @Windows11  (0) 2025.10.02
[AI] ComfyUI 3/2 @Windows11  (0) 2025.10.02
[AI] ComfyUI 1/2 @Windows11  (0) 2025.09.30
[AI] TG Webui: 모델 다운로드, 로드, 채팅 @Windows11  (2) 2025.08.12
[AI] 개발 환경 이동 @Windows11  (0) 2025.08.11