3/20/2026 at 12:04:39 AM
I created a CLI wrapper for Kitten TTS: https://github.com/newptcai/purrBTW, it seems that kitten (the Python package) has the following chain of dependencies: kittentts → misaki[en] → spacy-curated-transformers
So if you install it directly via uv, it will pull torch and NVIDIA CUDA packages (several GB), which are not needed to run kitten.
by dawdler-purge
3/20/2026 at 12:22:17 AM
Thanks, your install script worked for me.In case it helps anyone else, the first time I tried to run purr I got "OSError: PortAudio library not found". Installing libportaudio (apt install libportaudio2) got it running.
by cristoperb
3/20/2026 at 5:52:41 AM
Also did create a cli. I had to fork the project and removed one unused import which allowed me to remove a lot of unused ml libraries: https://github.com/Mic92/puss-sayby Mic92
3/20/2026 at 5:53:46 AM
Unfortunately upstream never looks at any pull requests.by Mic92
3/20/2026 at 3:44:35 PM
You might also like CopySpeak, a lightweight tool I've recently built for quick AI text-to-speech using the clipboard, featuring Kitten TTS and other engines.by ilyaizen
3/20/2026 at 12:24:47 AM
Thank you so much, that fixes an enormous pain point I was hitting. It's not just the size, that dependency chain was actually breaking on my machine and failing to install. Are we losing something by dropping the extra dependencies?by yjftsjthsd-h
3/20/2026 at 1:19:01 AM
I don't think so. It is perhaps a bug to have this unnecessary dependency. I expect the author of kitten to fix this soon.by dawdler-purge
3/20/2026 at 3:41:55 AM
thanks a lot for helping w this. yes i'll fix this asap.by rohan_joshi
3/20/2026 at 4:28:10 AM
Please let me know when this has been fixed. I will update purr to make the installation steps simpler.by dawdler-purge