insanely-fast-whisper icon indicating copy to clipboard operation
insanely-fast-whisper copied to clipboard

This is how you solve "Torch installed w/out Cuda" error

Open gjnave opened this issue 7 months ago • 4 comments

It's a procedural issue. The problem is that you have to install the cuda toolkit first:

  1. conda create --name ifw
  2. activate ifw
  3. conda config --append channels nvidia
  4. conda install -c nvidia cudatoolkit=11.8.0
  5. pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

Done.

gjnave avatar Jul 14 '24 22:07 gjnave