Could not build wheels for pyaudio, since package 'wheel' is not installed
Upgrading pip setuptools wheel did the trick for me.
pip install --upgrade pip setuptools wheel
This problem started appearing since I upgraded to pip 20. Here is some link i found useful Could not build wheels
It looks like you just need to install the wheel
package.
You can do this by running pip install wheel
at the terminal.