Python 3.x 语音助手使用python显示循环错误

Python 3.x 语音助手使用python显示循环错误,python-3.x,speech-to-text,pyttsx,Python 3.x,Speech To Text,Pyttsx,您好,我正在尝试用python制作一个语音助手,它使用wake命令,但给出循环错误 我是pyttx3新手,因此无法找到解决此问题的方法 有一些循环错误,我无法修复,请帮助使其工作 import pyjokes client = wolframalpha.Client(app_id) engine = pyttsx3.init() voices = engine.getProperty('voices') engine.setProperty('voice', voices[1].id)

您好,我正在尝试用python制作一个语音助手,它使用wake命令,但给出循环错误

我是pyttx3新手,因此无法找到解决此问题的方法

有一些循环错误,我无法修复,请帮助使其工作

import pyjokes

client = wolframalpha.Client(app_id)

engine = pyttsx3.init() 
voices = engine.getProperty('voices') 
engine.setProperty('voice', voices[1].id) 


def speak(text):
    engine.say(text)
    engine.runAndWait()
   
WAKE = "hello jack"
SERVICE = authenticate_google()
print("Start")
while True:
    text = get_audio()

    if text.count(WAKE) > 0:
        speak("I am ready")
        text = get_audio()

        CALENDAR_STRS = ["what do i have", "do i have", "am i busy"]
        for phrase in CALENDAR_STRS:
            if phrase in text:
                date = get_date(text)
                if date:
                    get_events(date, SERVICE)
                else:
                    speak("I don't understand")

        NOTE_STRS = ["make a note", "write this down", "remember this"]
        for phrase in NOTE_STRS:
            if phrase in text:
                speak("What would you like me to write down?")
                note_text = get_audio()
                note(note_text)
                speak("I've made a note of that.")
    

我认为您需要导入
pyttsx3
和其他模块

如果您仍然面临问题,那么您可以使用

RuntimeError: run loop already started