0

我正在尝试在 python 中使用 pyttsx3 将文本转换为语音。但我可能在 driverName 上收到错误消息。

这是我的代码

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

这是给出错误的输出。

Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:37:50) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> 
============ RESTART: D:/abhi/My Program/text-to-speech(pyttsx3).py ============
Traceback (most recent call last):
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\site-packages\pyttsx3\__init__.py", line 20, in init
    eng = _activeEngines[driverName]
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\weakref.py", line 131, in __getitem__
    o = self.data[key]()
KeyError: None

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "D:/abhi/My Program/text-to-speech(pyttsx3).py", line 2, in <module>
    engine = pyttsx3.init()
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\site-packages\pyttsx3\__init__.py", line 22, in init
    eng = Engine(driverName, debug)
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\site-packages\pyttsx3\engine.py", line 30, in __init__
    self.proxy = driver.DriverProxy(weakref.proxy(self), driverName, debug)
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\site-packages\pyttsx3\driver.py", line 50, in __init__
    self._module = importlib.import_module(name)
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 783, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\site-packages\pyttsx3\drivers\sapi5.py", line 3, in <module>
    import win32com.client
  File "C:\Users\Laptop\AppData\Local\Programs\Python\Python38\lib\site-packages\win32com\__init__.py", line 5, in <module>
    import win32api, sys, os
ImportError: DLL load failed while importing win32api: The specified module could not be found.
>>>
4

2 回答 2

0

你的代码没有问题。

它可以在我的 Windows 10 上成功运行,我的 python 版本是 3.7.3。

ImportError: DLL load failed while importing win32api: 找不到指定的模块。

您的win32api模块似乎没有正确安装,请使用pip uninstall pywin32卸载pip install pywin32后重新安装。

您也可以参考链接中的其他方法来解决它。

对于KeyError: None,你可以参考Python KeyError Exceptions and How to Handle Them来做一些错误处理。

最后,请按照本教程将文本转换为语音。

于 2019-10-22T02:31:53.677 回答
0

我解决了自己的问题。首先!我从控制面板卸载了 Python-3.8 并安装了 Python-3.7.2(并在安装过程中添加到路径中)。

其次,使用 cmd -> 升级 setuptool pip install --upgrade setuptools。之后我安装了 SpeechRecognition,pyttsx3

之后我还使用 whl 文件安装了 PyAudio-0.2.11-cp37-cp37m-win_amd64.whl(因为运行这个程序需要 pyaudio)。

下载 whl 文件的链接->这里

现在,这个程序有效。

于 2019-10-24T12:02:30.960 回答