forked from CMU-Perceptual-Computing-Lab/openpose
-
Notifications
You must be signed in to change notification settings - Fork 14
/
install_caffe_and_openpose.sh
executable file
·49 lines (31 loc) · 1.02 KB
/
install_caffe_and_openpose.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
#!/bin/bash
echo "------------------------- Installing Caffe and OpenPose -------------------------"
echo "NOTE: This script assumes that CUDA and cuDNN are already installed on your machine. Otherwise, it might fail."
function exitIfError {
if [[ $? -ne 0 ]] ; then
echo ""
echo "------------------------- -------------------------"
echo "Errors detected. Exiting script. The software might have not been successfully installed."
echo "------------------------- -------------------------"
exit 1
fi
}
function executeShInItsFolder {
# $1 = sh file name
# $2 = folder where the sh file is
# $3 = folder to go back
cd $2
exitIfError
sudo chmod +x $1
exitIfError
./$1
exitIfError
cd $3
exitIfError
}
executeShInItsFolder "install_caffe.sh" "./3rdparty/caffe" "../.."
exitIfError
executeShInItsFolder "install_openpose.sh" "./" "./"
exitIfError
echo "------------------------- Caffe and OpenPose Installed -------------------------"
echo ""