17

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?

Mikolasan
  • 626
  • 10
  • 19
Sih Jie
  • 241
  • 1
  • 3
  • 5
  • 10
    Please include the relevant text in your post - images are not useful for searching for content later and is hard to parse for those who uses a screen reader. You can install the wheel package by using `pip install wheel`. – MatsLindh May 02 '20 at 12:34
  • 5
    The screenshot of the error isn't particularly readable even for people with normal vision. – BSMP May 09 '20 at 01:18

2 Answers2

23

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

Stress_
  • 390
  • 3
  • 10
9

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

H_J
  • 406
  • 3
  • 7