在Raspberry中安装SpeechRecognition [python]

时间:2018-11-22 06:44:43

标签: python-3.x install speech-recognition raspberry-pi3

我按照https://github.com/Uberi/speech_recognition

的指示安装了SpeechRecognition

pip install SpeechRecognition

当前,我在Raspberry Pi 3上使用python 3.5。安装没有错误。 本教程的下一部分说:“要快速尝试,请在安装后运行python -m speech_recognition。”但是似乎找不到该库。

enter image description here

系统似乎正在其他地方寻找图书馆,或者我放错了图书馆的位置。谁能帮我吗?

2 个答案:

答案 0 :(得分:1)

尝试 pip3 install SpeechRecognition

答案 1 :(得分:0)

运行python3 -m speech_recognition时,我的问题已解决。

相关问题