-2

Please provide a solution regarding this I tried the pipwin approach its not working and if anyone know how to create a virtual environment of 3.7 for u sing pyaudio can share idea would be a great

2 Answers2

0

You can create virtual environment using(If you have anaconda installed)

conda create -n myenv python=3.7

then you can use

pipwin install pyaudio
astrick
  • 190
  • 1
  • 9
0

You can also use this link to download .whl file according to the python version it supports.

Go to the following directory and run this command on command prompt (Windows here) .

C:\Users\jay_p\AppData\Local\Programs\Python\Python39\Scripts>pip install PyAudio-0.2.11-cp39-cp39m-win64.whl

(This may be different for you.)

Jay Patel
  • 1,374
  • 1
  • 8
  • 17