-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.sh
executable file
·45 lines (36 loc) · 1.23 KB
/
install.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
37
38
39
40
41
42
43
44
45
#!/bin/bash
OLDDIR=`pwd`
DIR=`dirname "$0"`
cd "$DIR"
if [ -z "`command -v python3`" ]; then
echo "Error: Unable to run ''python3''. Exiting."
exit 1
fi
if [ ! -f ./bin/activate ]; then
echo "####################################"
echo "Creating Python Virtual Environment."
echo "####################################"
python3 -m venv .
fi
if [ "$VIRTUAL_ENV" != "`pwd`" ]; then
echo "######################################"
echo "Activating Python Virtual Environment."
echo "######################################"
source ./bin/activate
fi
echo "####################################################"
echo "Upgrade pip in the Virtual Environment if necessary."
echo "####################################################"
pip install --upgrade pip
echo "###################################################"
echo "Install required packages into Virtual Environment."
echo "###################################################"
pip install --requirement requirements.txt
echo "######################"
echo "Packaging AllBar.app ."
echo "######################"
./pack.sh
echo "####################################"
echo "Moving AllBar.app to /Applications ."
echo "####################################"
mv ./dist/AllBar.app /Applications/