File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 5
5
BASEDIR=$( dirname $0 )
6
6
source $BASEDIR /defaults.sh
7
7
8
- apt-get -y update
9
- apt-get install -y --no-install-recommends \
8
+ apt-get -yq update
9
+ apt-get install -yq --no-install-recommends \
10
10
build-essential \
11
11
graphviz \
12
12
libboost-filesystem-dev \
@@ -23,17 +23,17 @@ apt-get install -y --no-install-recommends \
23
23
wget
24
24
25
25
if $WITH_CMAKE ; then
26
- apt-get install -y --no-install-recommends cmake
26
+ apt-get install -yq --no-install-recommends cmake
27
27
fi
28
28
29
29
# Python3
30
- apt-get install -y --no-install-recommends \
30
+ apt-get install -yq --no-install-recommends \
31
31
python3-dev \
32
32
python3-numpy \
33
33
python3-skimage
34
34
35
35
if $WITH_IO ; then
36
- apt-get install -y --no-install-recommends \
36
+ apt-get install -yq --no-install-recommends \
37
37
libleveldb-dev \
38
38
liblmdb-dev \
39
39
libopencv-dev \
@@ -54,7 +54,7 @@ if $WITH_CUDA ; then
54
54
fi
55
55
56
56
# update package lists
57
- apt-get -y update
57
+ apt-get -yq update
58
58
59
59
# install packages
60
60
CUDA_PKG_VERSION=" 7-5"
@@ -68,7 +68,7 @@ if $WITH_CUDA ; then
68
68
ln -s /usr/local/cuda-$CUDA_VERSION /usr/local/cuda
69
69
70
70
if $WITH_CUDNN ; then
71
- apt-get install -y --no-install-recommends libcudnn7-dev
71
+ apt-get install -yq --no-install-recommends libcudnn7-dev
72
72
fi
73
73
fi
74
74
You can’t perform that action at this time.
0 commit comments