- You can use ComfyUI Manager find
"Minimalistic Comfy Wrapper WebUI"by author light-and-ray there and install it - Or you can use comfy-cli and install this extension using command
comfy node install mcww-webui - To get comfy-cli (
comfycommand) usepip install comfy-cli
- To solve this error try to select the latest version, not "nightly". If it doesn't help - change
security_level = normaltosecurity_level = weakinsideuser/__manager/config.inifile or try other installation methods
- Clone this repository into
custom_nodes/directory inside your ComfyUI installation:git clone https://github.com/light-and-ray/Minimalistic-Comfy-Wrapper-WebUI - Activate ComfyUI python environment in command line for the next step. If you don't know what is it, so probably you didn't install ComfyUI using it. Try to use
python_embeded\python -m pipfrom the portable installation instead ofpipcommand in the next step. If you have troubles with the installation, don't hesitate to open an issue - Install requirements from this extension root
pip install -r requirements.txt - You also should have
ffmpeginPATH. It's not mandatory, but otherwise you can experience lags (especially on a smartphone) in queue page if there are a lot of videos
- If you use ComfyUI in a cloud, the UI wont be available because it runs on a port that is not available from the Internet. In this case you need to consider using
GRADIO_SHARE="True"variable inside .env file (need to create in extension root) to use a tunnel by gradio.live; or you can install MCWW locally on your computer and set it up to use your Comfy from the cloud - If you use ComfyUI-Login extension, you need to set
COMFY_UI_LOGIN_EXTENSION_TOKENvariable inside .env file (need to create in extension root). In this case you may also want to set a password on MCWW too, useMCWW_AUTHvariable for it
All environment variables are described here
- Clone this repo somewhere you like
- Use
.env.exampleto create your own.envfile - Create python virtual environment
python -m venv venv - Activate this environment
. venv/bin/activatein Linux orcall venv\Scripts\activate.batin Windows - Install requirements
pip install -r requirements.txt - Use
./standalone-start.pyorpython standalone-start.py(on Windows) to start the server (even if venv is not activated)