gpt4 book ai didi

python - 导入错误 : No module named 'speech_recognition' in python IDLE

转载 作者:太空宇宙 更新时间:2023-11-04 00:41:18 25 4
gpt4 key购买 nike

我正在尝试使用带有 python 3.5.1 的语音识别模块来激活我的 jarvis AI 语音!我查看了堆栈溢出并发现了一些与我的问题类似的问题,但他们没有我需要的答案,我需要一个个性化的答案。我已经下载了所有必要的包,但仍然没有成功,我收到了这个错误:

ImportError: No module named 'speech_recognition'

如果我运行:

python -m speech_recognition

在终端中,它仅在终端中运行,我可以与它交谈,它几乎不在现场,但它能听到我的声音,并且可以解释一些单词。我已经按照本网站说明下载了终端中的所有软件包。

https://pypi.python.org/pypi/SpeechRecognition/

当我在 IDLE 中运行我的代码时,我的代码出现如上所示的错误。我在运行 macOS Sierra 10.12.2 的 iMac 上,如果有人有答案会有所帮助。谢谢!

这是我的代码:

import speech_recognition
import pyttsx

speech_engine = pyttsx.init('sapi5') # see
speech_engine.setProperty('rate', 150)

def speak(text):
speech_engine.say(text)
speech_engine.runAndWait()

recognizer = speech_recognition.Recognizer()

def listen():
with speech_recognition.Microphone() as source:
recognizer.adjust_for_ambient_noise(source)
audio = recognizer.listen(source)

try:
return recognizer.recognize_sphinx(audio)
# or: return recognizer.recognize_google(audio)
except speech_recognition.UnknownValueError:
print("Could not understand audio")
except speech_recognition.RequestError as e:
print("Recog Error; {0}".format(e))

return ""



speak("Say something!")
speak("I heard you say " + listen())

最佳答案

安装语音识别使用

pip install SpeechRecognition

关于python - 导入错误 : No module named 'speech_recognition' in python IDLE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41797920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com