-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathstart.sh
36 lines (32 loc) · 832 Bytes
/
start.sh
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
#!/bin/bash
install_required_stuffs () {
pip3 install –upgrade pip
apt -qq update -y
apt -qq install -y --no-install-recommends \
git \
ffmpeg \
mediainfo \
unzip \
wget \
gifsicle
}
print_banner () {
echo "
+=============================================+
* * ___ __ . __ .
. | /__ \ / / *
. | \_| V \__ .
* * * __ * .
\ /o _| _ _ (_ _|_ __ _ _ __.
. V | (_|(/_(_) __) |_ | (/_(_||||
+=============================================+
"
}
install_py_requirements () {
pip3 install -U setuptools wheel
pip3 install --no-cache-dir -r requirements.
}
print_banner
install_required_stuffs
install_py_requirements
python3 -m vcbot