kuukar-rpi/rpi_install.sh

10 lines
332 B
Bash
Raw Permalink Normal View History

2022-12-08 06:03:48 +00:00
echo "Updating Software Repository"
2022-11-09 15:59:29 +00:00
sudo apt update
2022-12-08 06:03:48 +00:00
echo "Installing Dependencies"
2022-11-09 15:59:29 +00:00
sudo apt install python3 python3-pip
pip3 install -r ./requirements.txt
2022-12-08 06:03:48 +00:00
echo "Creating systemd Service"
2022-11-09 15:59:29 +00:00
ln -s ./kuukar.service /etc/systemd/system/kuukar.service
sudo systemctl kuukar enable
2022-12-08 06:03:48 +00:00
sudo systemctl kuukar start
echo "Installation Completed!"