0

in pyttsx3 i have the following error:

ModuleNotFoundError: No module named 'pythoncom'

i don't know what to do pls tell

the Error code print screen

Green
  • 2,405
  • 3
  • 22
  • 46
Ashmit
  • 11
  • 2
  • Does this answer your question? [ImportError: No module named pythoncom](https://stackoverflow.com/questions/4145079/importerror-no-module-named-pythoncom) – Green Apr 15 '20 at 12:45

2 Answers2

2

Just run the following command:

pip install pywin32

The pythoncom package is missing. It's built in the standard of ActivePython but you can get it on Github as pywin32.

Bob
  • 561
  • 5
  • 17
0

From the image you've provided, I can see that you're using a Windows OS. This link might help: ImportError: No module named pythoncom

It suggests you install the pywin32 package using the following command:

pip install pywin32