Comfyui
1. System Preparation:
Python: Ensure Python 3.12 or higher is installed.
Git: If you don't have Git, install it using:
Code
sudo apt update
sudo apt install git
python3 -m venv .venv
source .venv/bin/activate
2. Install ComfyUI:
Clone the repository.
Code
git clone https://github.com/comfyanonymous/ComfyUI
cd ComfyUI
Install dependencies.
Code
pip install -r requirements.txt
3. Configure GPU Support (if applicable):
Nvidia (CUDA)
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
4. Launch ComfyUI:
Activate the virtual environment: source .venv/bin/activate (if you closed it)
Start ComfyUI:
python main.py --listen 0.0.0.0
(Use --listen 0.0.0.0 to access from other devices on your network, or omit it for local access only)
Access in your browser: Open your web browser and go to the address shown in the terminal (e.g., http://127.0.0.1:8188)
https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.youtube.com/watch%3Fv%3DanUHL7ct0bk%26t%3D466&ved=2ahUKEwiko63cu8COAxU01TgGHcBLJuIQma4LegQIdRAC&usg=AOvVaw3VlSNouODdAMqqVl2QzDoD
5. Install ComfyUI Manager (Optional but Recommended):
The manager allows you to install models and custom nodes.
Download the ComfyUI manager installation script from the ComfyUI Wiki and run it inside your ComfyUI directory.
Restart ComfyUI, and the manager button will appear.
This video explains how to install ComfyUI and its manager:
https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.youtube.com/watch%3Fv%3DqKO6pZAv0jM%26t%3D178&ved=2ahUKEwiko63cu8COAxU01TgGHcBLJuIQma4LegUIjAEQAg&usg=AOvVaw20RjSRzJjH-LsBekhkWIyF
Comments
Post a Comment