File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,17 @@ case "$(uname -s)" in
1818 * ) os=Linux
1919esac
2020
21+ env
2122echo " PYTHON_VERSION is ${PYTHON_VERSION} "
2223
2324# 1. Install conda at ./conda
2425if [ ! -d " ${conda_dir} " ]; then
2526 printf " * Installing conda\n"
26- wget -O miniconda.sh " http://repo.continuum.io/miniconda/Miniconda3-latest-${os} -x86_64.sh"
27+ wget --quiet - O miniconda.sh " http://repo.continuum.io/miniconda/Miniconda3-latest-${os} -x86_64.sh"
2728 bash ./miniconda.sh -b -f -p " ${conda_dir} "
2829 eval " $( " ${conda_dir} /bin/conda" shell.bash hook) "
29- conda update -y conda
30- conda install -y python=" ${PYTHON_VERSION} "
30+ conda update --quiet - y conda
31+ conda install --quiet - y python=" ${PYTHON_VERSION} "
3132else
3233 eval " $( " ${conda_dir} /bin/conda" shell.bash hook) "
3334fi
4142conda activate " ${env_dir} "
4243
4344# 3. Install minimal build tools
44- pip install cmake ninja
45+ pip --quiet install cmake ninja
4546
4647# 4. Buld codecs
4748mkdir -p third_party/build
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ if [ ! -d "${conda_dir}" ]; then
2020 printf " * Installing conda\n"
2121 export tmp_conda=" $( echo $conda_dir | tr ' /' ' \\' ) "
2222 export miniconda_exe=" $( echo $root_dir | tr ' /' ' \\' ) \\ miniconda.exe"
23- curl --output miniconda.exe https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -O
23+ curl --silent -- output miniconda.exe https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -O
2424 " $this_dir /install_conda.bat"
2525 unset tmp_conda
2626 unset miniconda_exe
2727 eval " $( " ${conda_dir} /Scripts/conda.exe" ' shell.bash' ' hook' ) "
28- conda update -y conda
29- conda install -y python=" $PYTHON_VERSION "
28+ conda update --quiet - y conda
29+ conda install --quiet - y python=" $PYTHON_VERSION "
3030else
3131 eval " $( " ${conda_dir} /Scripts/conda.exe" ' shell.bash' ' hook' ) "
3232fi
You can’t perform that action at this time.
0 commit comments