Add command to install unstable pytorch builds for ROCm.

This commit is contained in:
comfyanonymous 2023-03-13 13:50:54 -04:00
parent c672000954
commit 80665081e0
1 changed files with 7 additions and 1 deletions

View File

@ -50,10 +50,16 @@ Put your VAE in: models/vae
At the time of writing this pytorch has issues with python versions higher than 3.10 so make sure your python/pip versions are 3.10.
### AMD (Linux only)
AMD users can install rocm and pytorch with pip if you don't have it already installed:
AMD users can install rocm and pytorch with pip if you don't have it already installed, this is the command to install the stable version:
```pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.2```
I highly recommend you use the nightly/unstable pytorch builds though because they work a lot better for me (run this in the ComfyUI folder so it picks up the requirements.txt):
```pip install --upgrade --pre torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/nightly/rocm5.4.2 -r requirements.txt```
### NVIDIA
Nvidia users should install torch using this command: