forked from luandro/Python-ai-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·164 lines (144 loc) · 5.15 KB
/
setup.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/usr/bin/env bash
# -----------------------------------
# Initialization
# -----------------------------------
JARVIS_DIR=$(pwd)
VIRTUAL_ENV="jarvis_virtualenv"
green=`tput setaf 2`
red=`tput setaf 1`
reset=`tput sgr0`
# -----------------------------------
# Python version compatibility check
# -----------------------------------
version=$(python3 -V 2>&1 | grep -Po '(?<=Python )(.+)')
if [[ -z "$version" ]]
then
echo "${red} No Python 3.x.x in your system${reset}"
exit 1
else
echo "${green} System Python version is: Python ${version} ${reset}"
fi
#-----------------------------------
# System dependencies installation
#-----------------------------------
if command -v apt-get >/dev/null 2>&1; then
echo "${green}apt-get found, proceeding with installation...${reset}"
sudo apt-get update && \
sudo apt-get install -y build-essential && \
sudo apt-get install -y python3-dev && \
sudo apt-get install -y python3-setuptools && \
sudo apt-get install -y python3-pip && \
sudo apt-get install -y python3-venv && \
sudo apt-get install -y portaudio19-dev python3-pyaudio python3-pyaudio && \
sudo apt-get install -y libasound2-plugins libsox-fmt-all libsox-dev libxml2-dev libxslt-dev sox ffmpeg && \
sudo apt-get install -y espeak && \
sudo apt-get install -y libcairo2-dev libgirepository1.0-dev gir1.2-gtk-3.0 && \
sudo apt install -y mongodb && \
sudo apt-get install -y gnupg
# Reload local package database
sudo apt-get update
elif command -v dnf >/dev/null 2>&1; then
echo "${green}dnf found, proceeding with installation...${reset}"
sudo dnf update &&\
sudo dnf install -y python3 &&\
sudo dnf install -y python3-setuptools &&\
sudo dnf install -y python3-pip &&\
sudo dnf install -y python3-virtualenv &&\
sudo dnf install -y portaudio python-pyaudio &&\
sudo dnf install -y alsa-plugins-oss sox libxml2 libxslt sox && \
#ffmpeg (Not required?)
sudo dnf install -y espeak &&\
sudo dnf install -y cairo gobject-introspection openssl gtk3 gnupg &&\
sudo dnf update
elif command -v pacman >/dev/null 2>&1; then
echo "${green}pacman found, proceeding with installation...${reset}"
sudo pacman -Syu --noconfirm && \
sudo pacman -S --noconfirm base-devel && \
sudo pacman -S --noconfirm python && \
sudo pacman -S --noconfirm python-setuptools && \
sudo pacman -S --noconfirm python-pip && \
sudo pacman -S --noconfirm python-virtualenv && \
sudo pacman -S --noconfirm portaudio python-pyaudio && \
sudo pacman -S --noconfirm alsa-plugins sox libxml2 libxslt sox ffmpeg && \
sudo pacman -S --noconfirm espeak-ng && \
sudo pacman -S --noconfirm cairo gobject-introspection openssl gtk3 gnupg && \
if ! command -v yay >/dev/null 2>&1; then
echo "${red}yay not found, installing yay...${reset}"
sudo pacman -S --noconfirm git && \
git clone https://aur.archlinux.org/yay.git && \
cd yay && \
makepkg -si --noconfirm && \
cd .. && \
rm -rf yay
fi
yay -S --noconfirm mongodb-bin
else
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo "${green} System dependencies installation succeeded! ${reset}"
else
echo "${red} System dependencies installation failed ${reset}"
exit 1
fi
#-----------------------------------
# Create Jarvis virtual env
#-----------------------------------
python3 -m venv $JARVIS_DIR/$VIRTUAL_ENV
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo "${green} Jarvis virtual env creation succeeded! ${reset}"
else
echo "${red} Jarvis virtual env creation failed ${reset}"
exit 1
fi
#-----------------------------------
# Install Python dependencies
#-----------------------------------
source $JARVIS_DIR/$VIRTUAL_ENV/bin/activate
activated_python_version=$(python -V)
echo "${green} ${activated_python_version} activated!${reset}"
# Install python requirements
pip3 install --upgrade cython
pip3 install wheel
python setup.py bdist_wheel
pip3 install -r $JARVIS_DIR/requirements.txt
pip3 install -U scikit-learn
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo "${green} Install Python dependencies succeeded! ${reset}"
else
echo "${red} Install Python dependencies failed ${reset}"
exit 1
fi
#-----------------------------------
# Install nltk dependencies
#-----------------------------------
python3 -c "import nltk; nltk.download('punkt'); nltk.download('averaged_perceptron_tagger')"
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo "${green} Install nltk dependencies succeeded! ${reset}"
else
echo "${red} Install nltk dependencies failed ${reset}"
exit 1
fi
#-----------------------------------
# Create log access
#-----------------------------------
sudo touch /var/log/jarvis.log && \
sudo chmod 777 /var/log/jarvis.log
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo "${green} Create log access succeeded! ${reset}"
else
echo "${red}Create log access failed ${reset}"
exit 1
fi
#-----------------------------------
# Deactivate virtualenv
#-----------------------------------
deactivate
#-----------------------------------
# Finished
#-----------------------------------
echo "${green} Jarvis setup succeed! ${reset}"
echo "Start Jarvis: bash run_jarvis.sh"