
ComfyUI + ROCm 7.1 + PyTorch 2.8 + Strix Halo
November 1, 2025Tutorial
⚠This site is under active development. Some features may not work as expected, and new content is being added regularly.

Warning: Secure Boot MUST be turned off in BIOS
Update your system:
sudo apt update && sudo apt upgrade -y
Add NVIDIA PPA
sudo add-apt-repository ppa:graphics-drivers/ppa && sudo apt update
Check for available drivers
ubuntu-drivers devices
Install drivers (I usually choose the "recommended" option)
sudo apt install nvidia-driver-<DRIVER VERSION>
Reboot
sudo reboot now
The following should be installed:
sudo apt install python3.12 python3.12-venv python3-pip git build-essential libgl1 libglib2.0-0 -y
Clone the repo (I usually just clone it to my home folder)
git clone https://github.com/comfyanonymous/ComfyUI.git
Enter the folder
cd ComfyUI
Create a virtual environment
python3.12 -m venv venv
Enter the virtual environment
source venv/bin/activate
Now install PyTorch
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu130
Now install the requirements
pip install -r requirements.txt
This will install ComfyUI.
To start ComfyUI run:
python main.py --listen 0.0.0.0
Now on a separate computer, navigate to the IP of the PC running ComfyUI with port 8188
http://192.168.10.4:8188/
And that's it!
Some links are affiliate links. I may earn a small commission at no extra cost to you.