I was trying to use the python pyttsx3 module to say: "Hi World" , but the program crashed from the beginning onwards.
While trying to run the pyttsx3 programs , returns the following error
Given Below is the program :
import pyttsx3
engine = pyttsx3.init()
engine.say("Hi World")
engine.runAndWait()
I have installed all the dependencies required for the pyttsx3, but still, it doesn't work? What should I do ?