-
Notifications
You must be signed in to change notification settings - Fork 25
/
install-gradio-v2.sh
executable file
·31 lines (25 loc) · 1.23 KB
/
install-gradio-v2.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
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
rm -rf /tmp/gradio
sudo apt-get install -y build-essential autoconf automake intltool libsoup2.4-dev
sudo apt-get install -y libjson-glib-dev libgstreamer1.0-dev valac libgstreamer-plugins-base1.0-dev libgtk-3-dev
sudo apt-get -f install
git clone https://github.com/haecker-felix/gradio /tmp/gradio
cd /tmp/gradio
sh autogen.sh --prefix=/usr
make
sudo make install
rm -rf /tmp/gradio
echo "################################################################"
echo "################### gradio installed #####################"
echo "################################################################"