diff --git a/README.md b/README.md index 09d07c1..0acc3a0 100644 --- a/README.md +++ b/README.md @@ -62,14 +62,17 @@ Latest Version: v0.4.8 See [release history](https://github.com/KoljaB/RealtimeTTS/releases). -Added ParlerEngine. Needs flash attention, then barely runs fast enough for realtime inference on a 4090. Installation for Windows: +Added ParlerEngine. Needs flash attention, then barely runs fast enough for realtime inference on a 4090. + +Parler Installation for Windows (after installing RealtimeTTS): ```python -pip install RealtimeTTS[parler] +pip install git+https://github.com/huggingface/parler-tts.git pip install torch==2.3.1+cu121 torchaudio==2.3.1 --index-url https://download.pytorch.org/whl/cu121 pip install https://github.com/oobabooga/flash-attention/releases/download/v2.6.3/flash_attn-2.6.3+cu122torch2.3.1cxx11abiFALSE-cp310-cp310-win_amd64.whl pip install "numpy<2" ``` + ## Tech Stack This library uses: diff --git a/setup.py b/setup.py index ecb8cb5..01b3e12 100644 --- a/setup.py +++ b/setup.py @@ -41,14 +41,12 @@ def parse_requirements(filename): + [requirements["openai"]] + [requirements["gtts"]] + [requirements["coqui_tts"]] - + ["parler-tts @ git+https://github.com/huggingface/parler-tts.git"], "system": base_requirements + [requirements["pyttsx3"]], "azure": base_requirements + [requirements["azure-cognitiveservices-speech"]], "elevenlabs": base_requirements + [requirements["elevenlabs"]], "openai": base_requirements + [requirements["openai"]], "gtts": base_requirements + [requirements["gtts"]], "coqui": base_requirements + [requirements["coqui_tts"]], - "parler": base_requirements + ["parler-tts @ git+https://github.com/huggingface/parler-tts.git"], "jp": base_requirements + ["mecab-python3==1.0.6", "unidic-lite==1.0.8", "cutlet"], "ko": base_requirements + ["hangul_romanize"], }