For my next project I have been trying to install Coqui-AI Text-to-Speech (TTS) on windows. Coqui-AI is an open-source project focused on developing speech technologies and applications that are accessible, affordable, and community-driven. The project provides a range of speech-related tools, including speech-to-text, text-to-speech, and voice activity detection, all of which are based on state-of-the-art machine learning models. For this, I have tried to install it via the tutorial found here. Unfortunately, the tutorial is quite old and newer versions are possible to be installed. Therefore I have adapted the tutorial.
git clone https://github.com/coqui-ai/TTS.git
.cd TTS
.python -m venv .
..\Scripts\python -m pip install torch==1.8.0+cu111 torchvision==0.9.1+cu111 torchaudio==0.10.2+cu111 --index-url https://download.pytorch.org/whl/torch_stable.html
.\Scripts\pip install -e .
.import torch
x = torch.rand(5, 3)
print(x)
print(torch.cuda.is_available())