-
I have CUDA installed yet can't select GPU as an option in the webui. Not sure what I could be doing wrong. Anyone encountered this? The only options available are none and CPU. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@Rettroix, First, check it manually by running: >>> import torch
>>> torch.cuda.is_available()
True # if cuda is available you will get True otherwise you will get False if it returns |
Beta Was this translation helpful? Give feedback.
So I've managed to fix this and the solution is rather simple! All I had to do as uninstall torch with this command:
pip uninstall torch torchvision functorch tinycudann
and then resintall it with CUDA with this command:
pip install torch==2.0.1+cu118 torchvision==0.15.2+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
These commands were the ones found on this site: https://docs.nerf.studio/en/latest/quickstart/installation