saharmor / whisper-playground

Build real time speech2text web apps using OpenAI's Whisper https://openai.com/blog/whisper/
MIT License
777 stars 140 forks source link

Pyaudio #2

Closed Alastair1234 closed 1 year ago

Alastair1234 commented 1 year ago

Looks like a great project!
During the Install the backend and frontend environmet sh install_playground.sh I'm getting an error:

image
saharmor commented 1 year ago

Can you try following the suggestions in this thread and report back? https://stackoverflow.com/questions/73268630/error-could-not-build-wheels-for-pyaudio-which-is-required-to-install-pyprojec

HarHarLinks commented 1 year ago

I ran into the same issue, the solution was to install portaudio headers as indicated, which in my case is the package extra/portaudio on arch linux. This should be added to the dependecies in the README or similar.

chrismbirmingham commented 1 year ago

I also had the same issue, on ubuntu I just used sudo apt-get install portaudio19-dev

saharmor commented 1 year ago

Thanks for the flag. @HarHarLinks what command did you run to install portaudio? I'll add it to the README

HarHarLinks commented 1 year ago

command is sudo pacman -S portaudio on arch linux.

saharmor commented 1 year ago

Perfect, I've updated the readme, thanks.