pyttsx3 icon indicating copy to clipboard operation
pyttsx3 copied to clipboard

error

Open sova32 opened this issue 3 years ago • 2 comments

code from documentation:


import pyttsx3
engine = pyttsx3.init()
engine.say("I will speak this text")
engine.runAndWait()

Traceback (most recent call last): File "/run/media/vadiki/D_238_GB_WD/Кибервойска/Анонимность/Proxy/text_to_voice_google_tts/lib/python3.10/site-packages/pyttsx3/init.py", line 20, in init eng = _activeEngines[driverName] File "/usr/lib/python3.10/weakref.py", line 137, in getitem o = self.datakey KeyError: None

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "/run/media/vadiki/D_238_GB_WD/Projects/python/text_to_voice_google_tts/main.py", line 3, in engine = pyttsx3.init() File "/run/media/vadiki/D_238_GB_WD/Кибервойска/Анонимность/Proxy/text_to_voice_google_tts/lib/python3.10/site-packages/pyttsx3/init.py", line 22, in init eng = Engine(driverName, debug) File "/run/media/vadiki/D_238_GB_WD/Кибервойска/Анонимность/Proxy/text_to_voice_google_tts/lib/python3.10/site-packages/pyttsx3/engine.py", line 30, in init self.proxy = driver.DriverProxy(weakref.proxy(self), driverName, debug) File "/run/media/vadiki/D_238_GB_WD/Кибервойска/Анонимность/Proxy/text_to_voice_google_tts/lib/python3.10/site-packages/pyttsx3/driver.py", line 50, in init self._module = importlib.import_module(name) File "/usr/lib/python3.10/importlib/init.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1050, in _gcd_import File "", line 1027, in _find_and_load File "", line 1006, in _find_and_load_unlocked File "", line 688, in _load_unlocked File "", line 883, in exec_module File "", line 241, in _call_with_frames_removed File "/run/media/vadiki/D_238_GB_WD/Кибервойска/Анонимность/Proxy/text_to_voice_google_tts/lib/python3.10/site-packages/pyttsx3/drivers/espeak.py", line 9, in from . import _espeak, toUtf8, fromUtf8 File "/run/media/vadiki/D_238_GB_WD/Кибервойска/Анонимность/Proxy/text_to_voice_google_tts/lib/python3.10/site-packages/pyttsx3/drivers/_espeak.py", line 18, in dll = cdll.LoadLibrary('libespeak.so.1') File "/usr/lib/python3.10/ctypes/init.py", line 452, in LoadLibrary return self._dlltype(name) File "/usr/lib/python3.10/ctypes/init.py", line 374, in init self._handle = _dlopen(self._name, mode) OSError: libespeak.so.1: cannot open shared object file: No such file or directory

Process finished with exit code 1

sova32 avatar Aug 04 '22 16:08 sova32

even i am getting something similar to the Key Error. Anyone found something to fix it?

iamDyeus avatar Aug 06 '22 17:08 iamDyeus

You may need to install libespeak which on my Debian system was: sudo apt install libespeak1

matthewsgj avatar Feb 02 '23 23:02 matthewsgj