Replies: 8 comments 24 replies
-
you don't need to 6. Close command prompt where setup was running the rest is what it needs to do when the current torch installed by coqui-tts is not compatible with your GPU. |
Beta Was this translation helpful? Give feedback.
-
I had to do this as well with a 2070 rtx which is something I think would still be supported yet. |
Beta Was this translation helpful? Give feedback.
-
Just a note on something that tripped me up. You must use |
Beta Was this translation helpful? Give feedback.
-
no because you can have many other python env by name. specify ./ means you are pointing to a folder, not a name |
Beta Was this translation helpful? Give feedback.
-
so.... should we make a wiki of this or.. idk |
Beta Was this translation helpful? Give feedback.
-
@shadeau9 https://developer.nvidia.com/cuda-downloads Is this the nvidia toolkit? I did your steps and I still have a problem with nvidia gpu not being detected |
Beta Was this translation helpful? Give feedback.
-
Made a Wiki of this btw https://github.com/DrewThomasson/ebook2audiobook/wiki/GPU-ISSUES |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Not sure what the best way to add this in is so I thought I'd make a discussion. Every release I follow these steps to get GPU acceleration to work with my Nvidia GPU:
conda activate "Path\To\Python_Env"
pip uninstall torch torchvision torchaudio -y
to remove the automatically installed version of torch, torchvision, and torchaudiopip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128
(I'm using nightly and cu128 because of my GPU requirements, but you should install the version that makes sense for you based on your GPU and the Pytorch install instructions) to install the Cuda compatible version of torch, torchvision, and torchaudioSo far this has consistently worked for me after updating to new versions of ebook2audiobook. On an RTX 5090 a 7hr 13min audiobook can be created in 1hr 54min.
Beta Was this translation helpful? Give feedback.
All reactions