How to ComfyUI on AMD Radeon RX 5700 XT #1119
-
Did anyone get ComfyUI to work on the AMD 5700 XT card on linux? When I follow the instructions I get errors. I know people have got it to work on AMD cards of other version, e.g. 6XXX models and above. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Not sure what errors you are getting, but here are the steps I took to get ComfyUI to run on my Radeon RX 5700 XT under Arch Linux:
After all that, ComfyUI should output an image to the |
Beta Was this translation helpful? Give feedback.
Not sure what errors you are getting, but here are the steps I took to get ComfyUI to run on my Radeon RX 5700 XT under Arch Linux:
git clone https://github.com/comfyanonymous/ComfyUI.git
cd ComfyUI
ComfyUI/models/checkpoints
ComfyUI/models/vae
if you have anyvirtualenv -p 3.10 sdxl
(This creates a Python virtual environment to prevent this from clogging up your main system Python since we need specific versions of packages to make ComfyUI work)source sdxl/bin/activate
(This activates the Python virtual environment. Must be done every time y…