setup dependencies

This commit is contained in:
Chris Frankland-Wright 2025-06-23 14:48:39 +01:00
parent e61b8c57bc
commit 046d5d8826
3 changed files with 141 additions and 0 deletions

24
setup.sh Normal file
View file

@ -0,0 +1,24 @@
#!/bin/bash
set -e
echo "🔧 Installing dependencies for NTP Timeturner..."
# Update and upgrade packages
sudo apt update && sudo apt upgrade -y
# Essential tools
sudo apt install -y git curl python3 python3-pip build-essential
# Audio tools
sudo apt install -y alsa-utils ffmpeg portaudio19-dev python3-pyaudio
# LTC decoding tools
sudo apt install -y ltc-tools
# Optional: Network management (if needed later)
# sudo apt install -y network-manager
# Python packages
pip3 install numpy
echo "✅ Setup complete. Reboot recommended if this is the first run."