Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (16.4k points)

I'm trying to download PyAudio on Python 3.7. Ultimately, I get an error message when I try to use the command: "pip install pyaudio"

 "command 'cl.exe' failed: No such file or directory".

Even, I tried to modify the path, but it actually doesn't work. Can someone help me?

1 Answer

0 votes
by (26.4k points)

Click on this link, to Download the wheel. 

If you're using 32 bit, choose

PyAudio‑0.2.11‑cp37‑cp37m‑win32.whl

In case of 64 bit,

PyAudio‑0.2.11‑cp37‑cp37m‑win_amd64.whl

Later, go to your Download folder:

cd <your_donwload_path>

Then, for 64-bit:

pip install PyAudio‑0.2.11‑cp37‑cp37m‑win_amd64.whl

For 32-bit:

pip install PyAudio‑0.2.11‑cp37‑cp37m‑win32.whl

Want to know more about python? Come and Join: python certification course
For more details, do check out:

Related questions

0 votes
1 answer
0 votes
1 answer
asked Sep 27, 2019 in Python by Sammy (47.6k points)
0 votes
1 answer
0 votes
1 answer

Browse Categories

...