Im trying to get pyttsx3 working for a bit of text to speech code but i keep running into this error:
ModuleNotFoundError: No module named 'Foundation'
Ive tried installing Foundation but nothing seems to work it always returns the same error, currently im using the code from the documentation of pyttsx3 to experiment with this a bit:
import pyttsx3
engine = pyttsx3.init()
engine.say("I will speak this text")
engine.runAndWait()
Does anyone know how to get arround this error?