-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathinstall_all.sh
executable file
·98 lines (96 loc) · 1.86 KB
/
install_all.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
#!/bin/bash
#
# Install all of the packages, after removing whatever old packages were installed.
#
# The given argument is the number of cores to use for building (if applicable).
rm -rf bin/ lib/ share/ include/ debug/
mkdir bin/
mkdir lib/
mkdir share/
mkdir include/
mkdir debug/
./ann_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing ANN!";
exit 1;
fi
./flann_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing FLANN!";
exit 1;
fi
#./hlearn_install.sh $1
#if [ "$?" -ne "0" ]; then
# echo "Error installing HLearn!";
# exit 1;
#fi
./matlab_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error checking for MATLAB!";
exit 1;
fi
./mlpack_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing mlpack!";
exit 1;
fi
./mlpy_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing mlpy!";
exit 1;
fi
./scikit_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing scikit-learn!";
exit 1;
fi
./nearpy_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing nearpy!";
exit 1;
fi
./annoy_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing annoy!";
exit 1;
fi
./shogun_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing shogun!";
exit 1;
fi
./weka_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing Weka!";
exit 1;
fi
./elki_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing ELKI!";
exit 1;
fi
./mrpt_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing MRPT!";
exit 1;
fi
./milk_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing Milk!";
exit 1;
fi
./dlibml_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing dlib!";
exit 1;
fi
./r_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing R!";
exit 1;
fi
./dtimeout_install.sh $1
if [ "$?" -ne "0" ]; then
echo "Error installing R!";
exit 1;
fi