我在 Win10 上使用 Python3.7。我想使用 Pyttsx 但它显示错误。你知道如何解决这个问题吗?
错误:
回溯(最后一次调用):文件“C:\Python37\myTest\test.py”,第 2 行,在 import pyttsx 文件“C:\Python37\lib\site-packages\pyttsx__init__.py”,第 18 行,在从引擎导入引擎 ModuleNotFoundError:没有名为“引擎”的模块
测试.py:
import pyttsx
engine = pyttsx.init()
engine.say('Good morning.')
engine.runAndWait()
初始化.py:
from engine import Engine
引擎.py:
class Engine(object):
def __init__(self, driverName=None, debug=False):