-
Hi. I installed standalone AllTalk_TTS on my Ubuntu 22.04. It gave no errors during installation. However when I run the shell script start_alltalk.sh, I get lots of errors. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @ahmetax That's certainly an unusual one Ive not seen before. Im guessing you are using V1 of AllTalk v1 and not the AllTalk v2 BETA, as the V1 does an import of TTS on line 118. Both should work fine though (I both use and tested on Ubuntu 22.04). I can think of 2x things to try/check.
You can also try:
After either of these you should be able to do At this moment in time, Im thinking something has happened with some updates/changes. I can see librosa have made an update just the other month and maybe that update is doing something funny. Beyond that, you would have to send me a diagnostics log so that I could look through it and try identify what could be going on OR you could try the BETA version of AllTalk (ensure you follow the Linux instructions if you do).. I am going to be travelling not long after sending you this message, so my availability to look at anything/respond will be somewhat limited today/tomorrow, but feel free to get back to me and I will respond when I can. Thanks |
Beta Was this translation helpful? Give feedback.
-
Hi erew123, |
Beta Was this translation helpful? Give feedback.
Hi @ahmetax
That's certainly an unusual one Ive not seen before. Im guessing you are using V1 of AllTalk v1 and not the AllTalk v2 BETA, as the V1 does an import of TTS on line 118. Both should work fine though (I both use and tested on Ubuntu 22.04).
I can think of 2x things to try/check.
./start_environment.sh
and then runpip install librosa==0.10.1
You can also try:
./start_environment.sh
and then runpip uninstall tts
and thenpip install coqui-tts
After either of these you should be able to do
pip show librosa
orpip show coqui-tts
and they should both come back showing they are installed and librosa should should its version 0.10.1.At this moment in time, Im thinking s…