KoljaB / RealtimeTTS

Converts text to speech in realtime
1.39k stars 119 forks source link

Pyaudio package is not building #81

Closed SaranDharshanSP closed 1 month ago

SaranDharshanSP commented 1 month ago

image You could see it doesnt build the Pyaudio package

KoljaB commented 1 month ago

Hey there.

On Mac pls try:

brew install portaudio
pip install pyaudio

On Linux/Unix-like systems pls try:

sudo apt-get install portaudio19-dev
pip install pyaudio

If that does not work, you could try to install conda and install pyaudio with:

conda install pyaudio

If you're on windows you can also install pipwin and try the (unofficial) python package binaries for windows provided by Christoph Gohlke:

pip install pipwin
pipwin install pyaudio
SaranDharshanSP commented 1 month ago

Yup this solved the issue. Thank you!