How to fix installation issues for PyAudio, PortAudio: “fatal error C1083: Cannot open include file: ‘portaudio.h’: No such file or directory”

I am having issues installing PyAudio and portaudio.

When I do python -m pip install pyaudio I get this error:

    src/_portaudiomodule.c(29): fatal error C1083: Cannot open include file: 'portaudio.h': No such file or directory
    error: command 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.14.26428\bin\HostX86\x86\cl.exe' failed with exit status 2
    ----------------------------------------
Command ""C:UsersThis PCAppDataLocalProgramsPythonPython37-32python.exe" -u -c "import setuptools, tokenize;__file__='C:\Users\THISPC~1\AppData\Local\Temp\pip-install-3ock7jqh\pyaudio\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('rn', 'n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:UsersTHISPC~1AppDataLocalTemppip-record-14pe9p6yinstall-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:UsersTHISPC~1AppDataLocalTemppip-install-3ock7jqhpyaudio

So after looking that error up, I read I need to install portaudio. So I did python -m pip install portaudio and got this error:

Collecting portaudio
Could not find a version that satisfies the requirement portaudio (from versions: )
No matching distribution found for portaudio

I have no idea where to go from here now.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Try This, CMD as Administrator and run the following:

pip install pipwin
pipwin install pyaudio

Method 2

portaudio is not a Python package, it’s a C library that’s entirely independent of Python, so you can’t install it via pip.

See the PortAudio for website for details on the official way to get it and install it on your platform.

AFAIK, the official way to get it on Windows is to download the source and then follow the instructions in the Tutorial for compiling it yourself. You probably want to build it with the same compiler you use for Python C extensions, although I’m not sure if that’s required.

Or, if you’re using a third-party package manager like Chocolatey on Windows, there’s a good chance it can install PortAudio.

Or, if you use Anaconda or Miniconda for your Python, the conda package manager knows how to install non-Python packages that Python packages depend on, including portaudio.

Finally, there seem to be a number of people providing unofficial pre-compiled PortAudio binaries for Windows. If you search for “portaudio windows binary” or “portaudio windows pre-compiled” you’ll find a number of them. I have no idea how well-tested, up-to-date, etc. any of these are.


If you’re using Anaconda/Miniconda, you should have used conda install pyaudio rather than pip install pyaudio in the first place. You should really only use pip for packages that aren’t available on conda or conda-forge.

If you haven’t set up conda-forge yet, you probably want to do that first:

conda config --add channels conda-forge

And then, this should be all you need:

conda install pyaudio

Unlike the pip package, which just assumes you have portaudio installed properly, the conda package will either automatically install portaudio as a dependency for pyaudio, or tell you why it can’t.

Method 3

The official PyAudio 0.2.11 does not support Python 3.7+, and trying to install results in the error C1083: Cannot open include file: 'portaudio.h'.

However, there are unofficial wheels for PyAudio that support 3.7+.

If you are using the official version, you must use Python 3.6 with PyAudio 0.2.11.

See http://people.csail.mit.edu/hubert/pyaudio/

Method 4

I installed pyaudio on python 3.6.x without problem, but is not working on later versions.

py -m pip install pyaudio

works perfect on 3.6.x or earlier.

Method 5

If you get an error when trying to use pipwin to install this, you have to run it through python as windows doesn’t recognize pipwin(at least for me)

pip install pipwin
python -m pipwin install pyaudio

Method 6

You can install Anaconda install pyaudio using it.
You must add Anaconda to path.
After installing Anaconda and adding to path then in your command prompt[cmd] type
conda install pyaudio.
And whala

Method 7

On Ubuntu distributions you can first run

sudo apt install portaudio19-dev

and then reinstall pyaudio with pip again.

Method 8

If you are using anaconda then this problem is because your versions are not upgraded.To upgrade all the packages simply run the following command in the terminal.

conda update –all

Method 9

You can install Portaudio with

pip install port audio

you may also need to

pip install ConfigParser

Let me know if it’s work.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x