Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not build wheels for pyaudio, since package 'wheel' is not installed [closed]

I tried to install pyaudio, but it returns an error like this:

Could not build wheels for pyaudio, since package 'wheel' is not installed.

picture of the terminal

How can I fix this?

like image 986
Sih Jie Avatar asked May 02 '20 12:05

Sih Jie


2 Answers

It looks like you just need to install the wheel package. You can do this by running pip install wheel at the terminal.

like image 81
Stress_ Avatar answered Sep 21 '22 04:09

Stress_


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

like image 30
H_J Avatar answered Sep 20 '22 04:09

H_J