add text printout during install

This commit is contained in:
Siwat Sirichai 2022-12-08 13:03:48 +07:00
parent 9ff0c01713
commit ac470b75f2
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
echo "Updating Software Repository"
sudo apt update sudo apt update
echo "Installing Dependencies"
sudo apt install python3 python3-pip sudo apt install python3 python3-pip
pip3 install -r ./requirements.txt pip3 install -r ./requirements.txt
echo "Creating systemd Service"
ln -s ./kuukar.service /etc/systemd/system/kuukar.service ln -s ./kuukar.service /etc/systemd/system/kuukar.service
sudo systemctl kuukar enable sudo systemctl kuukar enable
sudo systemctl kuukar start sudo systemctl kuukar start
echo "Installation Completed!"