-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·35 lines (27 loc) · 1.01 KB
/
setup.sh
File metadata and controls
executable file
·35 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
application_name="KITT Talk"
echo "#################################################"
echo -e "#\t\t$application_name\t\t\t#"
echo -e "#\tThank you for using $application_name!\t\t#"
echo -e "#\tAuthor: Dominik Mack \t\t\t#"
echo -e "#\tContact: dominik.mack@icloud.com\t#"
echo -e "#\tGithub: Severon96\t\t\t#"
echo "#################################################"
echo
echo "If the Script fails because of missing Admin privileges, run it again with the sudo-Command."
echo
command -v python3 >/dev/null 2>&1 || {
echo "Python3 is required for $application_name."
echo "Please install Python3 to continue the installation."
exit
}
echo "Great, Python3 is installed. Now we can proceed."
command -v pip >/dev/null 2>&1 || {
echo "Pip is required for $application_name."
echo "Starting Pip-Installation..."
curl https://bootstrap.pypa.io/get-pip.py > get-pip.py
sudo python get-pip.py
}
echo "Great, Pip is installed. Now we can proceed."
pip3 install mutagen
pip3 install playsound