-
Notifications
You must be signed in to change notification settings - Fork 5
/
install-python.sh
167 lines (137 loc) · 2.65 KB
/
install-python.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
165
166
167
#!/bin/bash
### Update repositories
sudo apt-get -y update
function essential(){
### Update repositories
sudo apt-get -y update
### Install essential packages
sudo apt-get install -y python3-pip python-dev build-essential
# Check Essential packages install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install Essential packages, check this!"
exit 1
fi
}
function numpy() {
# Install numpy
sudo pip3 install numpy
# Check numpy install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install Numpy, check this!"
exit 1
fi
}
function scipy() {
# Install scipy
sudo pip3 install scipy
# Check scipy install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install Scipy, check this!"
exit 1
fi
}
function matplotlib() {
# Install matplotlib
sudo pip3 install matplotlib
# Check matplotlib install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install Matplotlib, check this!"
exit 1
fi
}
function jupyter() {
# Install jupyter
sudo pip3 install jupyter
# Check jupyter install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install jupyter, check this!"
exit 1
fi
}
function pandas() {
# Install pandas
sudo pip3 install pandas
# Check pandas install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install pandas, check this!"
exit 1
fi
}
function seaborn() {
# Install seaborn
sudo pip3 install seaborn
# Check seaborn install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install seaborn, check this!"
exit 1
fi
}
function scikit-learn() {
# Install scikit-learn
sudo pip3 install scikit-learn
# Check scikit-learn install
if [ $? = 0 ]; then
echo "Installation Successfully"
else
echo "Problems to install scikit-learn, check this!"
exit 1
fi
}
case $1 in
essential)
essential
;;
numpy)
numpy
;;
scipy)
scipy
;;
matplotlib)
matplotlib
;;
jupyter)
jupyter
;;
pandas)
pandas
;;
seaborn)
seaborn
;;
scikit-learn)
scikit-learn
;;
all)
essential
numpy
scipy
matplotlib
jupyter
pandas
seaborn
scikit-learn
;;
*)
echo -e '''
Usage: MLSetup_python3.sh + Option
MLSetup_python3.sh all -> this will install all packages
You can install individually packages using: MLSetup_python3.sh pandas
or: MLSetup_python3.sh seaborn
'''
;;
esac