web-dev-qa-db-ja.com

AttributeError:PyAudioが見つかりませんでした。インストールを確認してください...音声認識を使用できません

基本的な音声認識アシスタントを作成しようとしています。コードを実行すると、次のことがわかります。

Traceback (most recent call last):
  File "C:\Users\Mo.haytham\AppData\Local\Programs\Python\Python37\lib\site-packages\speech_recognition\__init__.py", line 108, in get_pyaudio
    import pyaudio
ModuleNotFoundError: No module named 'pyaudio'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:/Users/Mo.haytham/.PyCharmCE2018.3/config/scratches/ALPHA_BASIC.py", line 22, in <module>
    hear()
  File "C:/Users/Mo.haytham/.PyCharmCE2018.3/config/scratches/ALPHA_BASIC.py", line 13, in hear
    with sr.Microphone() as sourse:
  File "C:\Users\Mo.haytham\AppData\Local\Programs\Python\Python37\lib\site-packages\speech_recognition\__init__.py", line 79, in __init__
    self.pyaudio_module = self.get_pyaudio()
  File "C:\Users\Mo.haytham\AppData\Local\Programs\Python\Python37\lib\site-packages\speech_recognition\__init__.py", line 110, in get_pyaudio
    raise AttributeError("Could not find PyAudio; check installation")
AttributeError: Could not find PyAudio; check installation 

私がしようとしました pip install pyaudioしかし、このエラーが表示されます:

Running setup.py clean for pyaudio
Failed to build pyaudio
Installing collected packages: pyaudio
  Running setup.py install for pyaudio ... error
    ERROR: Complete output from command 'c:\users\mo.haytham\appdata\local\programs\python\python37\python.exe' -u -c 'import setuptools, tokenize;__file__='"'"'C:\\Users\\MO2D8C~1.HAY\\AppData\\Local\\Temp\\pip-install-o2
10x3zl\\pyaudio\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\MO2
D8C~1.HAY\AppData\Local\Temp\pip-record-hr7kket1\install-record.txt' --single-version-externally-managed --compile:
    ERROR: running install
    running build
    running build_py
    creating build
    creating build\lib.win-AMD64-3.7
    copying src\pyaudio.py -> build\lib.win-AMD64-3.7
    running build_ext
    building '_portaudio' extension
    error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.Microsoft.com/downloads/
    ----------------------------------------
ERROR: Command "'c:\users\mo.haytham\appdata\local\programs\python\python37\python.exe' -u -c 'import setuptools, tokenize;__file__='"'"'C:\\Users\\MO2D8C~1.HAY\\AppData\\Local\\Temp\\pip-install-o210x3zl\\pyaudio\\setup.p
y'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\MO2D8C~1.HAY\AppData\Local\
Temp\pip-record-hr7kket1\install-record.txt' --single-version-externally-managed --compile" failed with error code 1 in C:\Users\MO2D8C~1.HAY\AppData\Local\Temp\pip-install-o210x3zl\pyaudio\
def hear():
    import speech_recognition as sr
    ear = sr.Recognizer()
    with sr.Microphone() as sourse:
        print("listening...")
        audio = ear.listen(sourse)
        try:
            text = ear.recognize_google(audio)
            print(text)
        except:
            print("i didn't get that...")

hear()
3
Mo .haytham

PyaudioをインストールするためのC++ビルドツールがないため、pyaudioのインストールエラーが発生します。

Mircosoft visual C++ 14.0をインストールするには、このリンクを検討してください https://stackoverflow.com/a/49986365/82274

次に、pyaudioをインストールします。

anaconda Promptでjupyterノートブックを使用している場合

conda install pyaudio

cmdを使用してjupyterノートブックを使用している場合は、jupyterセルで、

import sys
!{sys.executable} -m pip install pyaudio

python cmdでファイルを実行している場合、

pip3 install pyaudio #for python3
0
Aashish Mamgain

Sudo apt-get install libportaudio-dev(これを最初に試す)Sudo apt-get install portaudio19-dev(代わりにこれを使用)後でpyaudioをインストールする(python -m pip install PyAudio)

0
Nikhil08

あなたがubuntu 18.04ユーザーの場合は、次の手順に従ってください

Sudo apt-get install portaudio19-dev python-pyaudio

その後

pip install PyAudio
0
rupesh

pyaudioをビルドするために必要なファイルが不足しているようです。

エラーログから、

Microsoft Visual C++ 14.0が必要です。 "Microsoft Visual C++ Build> Tools"で取得: https://visualstudio.Microsoft.com/downloads/

インストールする必要がありますMicrosoft Visual C++ Build Tools

0
Kevin Beeman