-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
engine = pyttsx3.init('sapi5') #1
Comments
pip install --upgrade comtypes |
if you face this type of problem like
Traceback (most recent call last):
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\site-packages\pyttsx3_init_.py", line 20, in init
eng = _activeEngines[driverName]
~~~~~~~~~~~~~~^^^^^^^^^^^^
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\weakref.py", line 136, in getitem
o = self.datakey
~~~~~~~~~^^^^^
KeyError: 'sapi5'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Haris\Python-Projects\Jarvis\Jarvis\jarvis.py", line 38, in
engine = pyttsx3.init('sapi5')
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\site-packages\pyttsx3_init_.py", line 22, in init
eng = Engine(driverName, debug)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\site-packages\pyttsx3\engine.py", line 30, in init
self.proxy = driver.DriverProxy(weakref.proxy(self), driverName, debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\site-packages\pyttsx3\driver.py", line 50, in init
self.module = importlib.import_module(name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\importlib_init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "", line 1206, in _gcd_import
File "", line 1178, in _find_and_load
File "", line 1149, in _find_and_load_unlocked
File "", line 690, in _load_unlocked
File "", line 940, in exec_module
File "", line 241, in call_with_frames_removed
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\site-packages\pyttsx3\drivers\sapi5.py", line 1, in
import comtypes.client # Importing comtypes.client will make the gen subpackage
^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Haris\AppData\Local\Programs\Python\Python311\Lib\site-packages\comtypes_init.py", line 375
except COMError, err:
^^^^^^^^^^^^^
SyntaxError: multiple exception types must be parenthesized
The text was updated successfully, but these errors were encountered: