Error "could Not Find Pyaudio; Check Installation" On Windows
I have simple code in python to recognise my voice and convert it in text. I am using speech recognition. But I am getting error 'Could not find PyAudio; check installation'. How t
Install pyaudio.
if you are using jupyter notebook on anaconda prompt then
conda install pyaudio
if you are using jupyter notebook using cmd then on jupyter cell,
import sys
!{sys.executable} -m pip install pyaudio
if you are running python file on cmd then,
pip3 install pyaudio #for python3
Post a Comment for "Error "could Not Find Pyaudio; Check Installation" On Windows"