Install wyoming-satellite on Raspberry Pi
masterTo install wyoming-satellite, first install system dependencies, clone the repository, and (if using ReSpeaker HATs) install drivers. Then, set up a Python virtual environment and install the package with its dependencies.
System Dependencies:
sudo apt-get update
sudo apt-get install --no-install-recommends git python3-venvDriver Installation (ReSpeaker 2Mic/4Mic HAT only):
cd wyoming-satellite/
sudo bash etc/install-respeaker-drivers.sh
sudo rebootPython Environment Setup:
cd wyoming-satellite/
python3 -m venv .venv
.venv/bin/pip3 install --upgrade pip
.venv/bin/pip3 install --upgrade wheel setuptools
.venv/bin/pip3 install -f 'https://synesthesiam.github.io/prebuilt-apps/' -e '.[all]'sudo apt-get update
sudo apt-get install --no-install-recommends \
git \
python3-venv
git clone https://github.com/rhasspy/wyoming-satellite.git
# If using ReSpeaker HATs:
cd wyoming-satellite/
sudo bash etc/install-respeaker-drivers.sh
sudo reboot
# After reboot:
cd wyoming-satellite/
python3 -m venv .venv
.venv/bin/pip3 install --upgrade pip
.venv/bin/pip3 install --upgrade wheel setuptools
.venv/bin/pip3 install \
-f 'https://synesthesiam.github.io/prebuilt-apps/' \
-e '.[all]'