我正在制作一个 pyttsx3 聊天机器人,但是发生了这个错误:
OSError: libespeak.so.1: cannot open shared object file: No such file or directory
也出现了这个错误:
KeyError: None
这是我的代码:
import pyttsx3
def say(sp):
engine = pyttsx3.init()
engine.say(sp)
engine.runandwait()
say("Hello my name is Neuron")
有谁知道我该如何解决这个问题?