Answers for "pyaudio installation error mac"

10

error while installing pyaudio

pip install pipwin
pipwin install pyaudio
Posted by: Guest on November-28-2020
2

pyaudio install error mac

I'm assuming you are on a Mac. This is a simple issue to fix.

First install Xcode. Then restart your computer. Afterwards run the commands in sequence,

xcode-select --install
brew remove portaudio
brew install portaudio
pip3 install pyaudio
So to clarify, Xcode is installed through the App Store. Xcode command line tools are required for some installations, for others they are not. I'm including it here just to be on the safe side. You also probably do not need to uninstall and reinstall the formula via Homebrew, I did that to ensure that there would be absolutely no problems.

Edit: I have been told Homebrew requires Xcode. So just run the

xcode-select --install
command to be able to use Clang. Also what version of Mac are you on?
Posted by: Guest on March-22-2021
-1

pyaudio install error

#find your python version
#ind the appropriate .whl file from https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio
"""
go to the folder where it is downloaded for example cd C:UsersfoobarDownloads
install the .whl file with pip for example in my case:


"""
pip install PyAudio-0.2.11-cp39-cp39-win_amd64.whl
Posted by: Guest on October-25-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language