Win10でPython3.7を使用しています。Pyttsx を使用したいのですが、エラーが表示されます。問題を解決する方法はありますか?
エラー:
トレースバック (最後の最後の呼び出し): ファイル "C:\Python37\myTest\test.py"、2 行目、インポート pyttsx ファイル "C:\Python37\lib\site-packages\pyttsx__init__.py"、18 行目エンジンのインポートから Engine ModuleNotFoundError: 'engine' という名前のモジュールがありません
test.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):