shricodev / siri-voice-llama3

Voice AI assistant with Groq, FastWhisper and llama3 🦙
MIT License
12 stars 4 forks source link

ERROR: Failed building wheel for PyAudio #2

Closed digitalmouse closed 1 hour ago

digitalmouse commented 2 hours ago

Build went pretty well, then failed with following error:

Building wheels for collected packages: PyAudio
  Building wheel for PyAudio (pyproject.toml) ... error
  error: subprocess-exited-with-error

  × Building wheel for PyAudio (pyproject.toml) did not run successfully.
  │ exit code: 1
  ╰─> [14 lines of output]
      running bdist_wheel
      running build
      running build_py
      creating build/lib.linux-x86_64-cpython-310/pyaudio
      copying src/pyaudio/__init__.py -> build/lib.linux-x86_64-cpython-310/pyaudio
      running build_ext
      building 'pyaudio._portaudio' extension
      creating build/temp.linux-x86_64-cpython-310/src/pyaudio
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/usr/local/include -I/usr/include -I/home/digitalmouse/assistant-llama3/.venv/include -I/usr/include/python3.10 -c src/pyaudio/device_api.c -o build/temp.linux-x86_64-cpython-310/src/pyaudio/device_api.o
--->  src/pyaudio/device_api.c:9:10: fatal error: portaudio.h: No such file or directory
          9 | #include "portaudio.h"
            |          ^~~~~~~~~~~~~
      compilation terminated.
      error: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for PyAudio
Failed to build PyAudio
ERROR: Could not build wheels for PyAudio, which is required to install pyproject.toml-based projects

from running: pip3 install -r requirements.txt Using Pop!_OS 22.04 LTS - 64bit; Gnome 42.9 (basically follows Debian and Ubuntu)

digitalmouse commented 1 hour ago

After some Googling, this seemed to solve the problem:

sudo apt install portaudio19-dev python3-pyaudio

digitalmouse commented 1 hour ago

closing myself! 😄