This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setlocal enabledelayedexpansion | |
| :: add or remove commandline parameters into this line, these are recommended for 6000 series amd gpu's. | |
| set PARAMS=--use-quad-cross-attention --disable-smart-memory --disable-pinned-memory --disable-api-nodes --cache-none | |
| :: change the path below *only below* to wherever you have installed comfyui to. (in this example it is : "D:\ComfyUI") , it will change everything else automatically. | |
| set COMFYUI_PATH=C:\Users\user\Documents\ComfyUI | |
| set COMFYUI_MODEL_PATH=%COMFYUI_PATH%\models |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| echo :: Cloning comfyui ... | |
| git clone https://github.com/comfyanonymous/ComfyUI | |
| echo. | |
| cd ComfyUI | |
| md .triton | |
| echo :: Creating virtual environment ... | |
| py -3.12 -m venv venv | |
| echo. | |
| echo :: Activating virtual environment ... |