I am having difficulty install pyaudio for python3 on my MacOSX Sierra. I have installed portaudio using
brew install portaudio
I then try:
pip3 install pyaudio
but get the well known gcc error #include "portaudio.h".
I specified the headers as detailed in a reply to another post by fukudama, as so:
pip install --global-option='build_ext' --global-option='-I/usr/local/include' --global-option='-L/usr/local/lib' pyaudio
However, I now get an error that float.h cannot be found. I know float.h is located in /usr/include/c++/4.2.1/tr1, but I am fairly new to programming and don't know how to include this in my install command. Any help would be really appreciated, thank you!