-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.sh
More file actions
39 lines (29 loc) · 691 Bytes
/
setup.sh
File metadata and controls
39 lines (29 loc) · 691 Bytes
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
35
36
37
38
#!/usr/bin/env bash
# Author = Adarsh Gupta (Adarshaddee)
# Aim = To create random passwords and protect from hackers
# VERSION = 1.1
# NOTE: THIS TOOL IS ONLY FOR EDUCATIONAL PURPOSE
clear
echo -ne "Installation Begins ###"
for i in 1 2 3 4 5
do
echo -ne "#"
sleep 0.5
done
echo -e "\n"
echo "Checking for system update"
apt update && apt upgrade -y
echo -e "\n"
echo "Checking for python and it's updates"
sleep 0.5
apt-get install python -y
sleep 0.5
python3 -m pip install --upgrade pip
echo -e "\n"
sleep 0.5
echo "Checking for Required Python Pakages"
sleep 1
pip install -r requirements.txt
sleep 0.5
echo "Installation Completed"
echo "Now, You can use your tool"