in pyttsx3
i have the following error:
ModuleNotFoundError: No module named 'pythoncom'
i don't know what to do pls tell
in pyttsx3
i have the following error:
ModuleNotFoundError: No module named 'pythoncom'
i don't know what to do pls tell
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.
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