insanely-fast-whisper
insanely-fast-whisper copied to clipboard
This is how you solve "Torch installed w/out Cuda" error
It's a procedural issue. The problem is that you have to install the cuda toolkit first:
- conda create --name ifw
- activate ifw
- conda config --append channels nvidia
- conda install -c nvidia cudatoolkit=11.8.0
- pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
Done.