Hello Furkan, I have watched this video a couple of times and followed the instructions. I have ins

Hello Furkan, I have watched this video a couple of times and followed the instructions.

I have installed torch using the following command:
pip3 install torch==2.1.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

and transformers using the following command:
pip install xformers==0.0.23

I also edit webui-user.bat to use xformers:
set COMMANDLINE_ARGS=--xformers

With pip install xformers==0.0.23, I get the following:

Installing collected packages: torch, xformers
Attempting uninstall: torch
Found existing installation: torch 2.1.0+cu118
Uninstalling torch-2.1.0+cu118:
Successfully uninstalled torch-2.1.0+cu118
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
torchvision 0.16.0+cu118 requires torch==2.1.0+cu118, but you have torch 2.1.1 which is incompatible.
torchaudio 2.1.0+cu118 requires torch==2.1.0+cu118, but you have torch 2.1.1 which is incompatible.
Successfully installed torch-2.1.1 xformers-0.0.23

And when I execute webiu-user.bat, I get the following:
RuntimeError: Torch is not able to use GPU; add --skip-torch-cuda-test to COMMANDLINE_ARGS variable to disable this check

Is there something I am overlooking?

Thank you
Was this page helpful?