Home > OS >  How to install Pyaudio in python 3.11.1?
How to install Pyaudio in python 3.11.1?

Time:12-16

I am trying to install pyaudio but it always says like this: Python 3.11.1. I am trying to make AI and using macos.

Try to help me to install pyaudio in the macos

CodePudding user response:

You need portaudio installed. If you're using Homebrew, you can do it with this command:

brew install portaudio

CodePudding user response:

To install pyaudio on your mac. First, you will need portaudio installed. That can be done using brew. If you don't have brew installed follow this link to install brew on your mac.

brew install portaudio

After installing portaudio you can install pyaudio using conda.

conda install -c anaconda pyaudio
  • Related