From ac470b75f266b7165e7d6e656be366def7dddc37 Mon Sep 17 00:00:00 2001 From: Siwat Sirichai Date: Thu, 8 Dec 2022 13:03:48 +0700 Subject: [PATCH] add text printout during install --- rpi_install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rpi_install.sh b/rpi_install.sh index 55e45f6..8b44167 100644 --- a/rpi_install.sh +++ b/rpi_install.sh @@ -1,6 +1,10 @@ +echo "Updating Software Repository" sudo apt update +echo "Installing Dependencies" sudo apt install python3 python3-pip pip3 install -r ./requirements.txt +echo "Creating systemd Service" ln -s ./kuukar.service /etc/systemd/system/kuukar.service sudo systemctl kuukar enable -sudo systemctl kuukar start \ No newline at end of file +sudo systemctl kuukar start +echo "Installation Completed!" \ No newline at end of file