When I run the code in pyCharm it returns, "ModuleNotFoundError: No module named 'Foundation'".
I tried to install pyttsx3 in my terminal it returns "Could not install packages due to an EnvironmentError:" I then tried to install pyobjc but got the same error. Lastly I tried to install and import Foundation but it did nothing.
import pyttsx3
engine = pyttsx3.init()
engine.say("Testing")
engine.runAndWait()