Quiet Installation

This commit is contained in:
XXXXRT666 2025-04-30 23:42:29 +01:00
parent f192a5da9a
commit 313327906a
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ source "$HOME/anaconda3/etc/profile.d/conda.sh"
"$HOME/anaconda3/bin/conda" config --add channels conda-forge
"$HOME/anaconda3/bin/conda" update --all -y
"$HOME/anaconda3/bin/conda" update -q --all -y
rm $LOG_PATH

View File

@ -126,13 +126,13 @@ fi
# 安装构建工具
# Install build tools
echo "Installing GCC..."
conda install -c conda-forge gcc=14 -y --quiet
conda install -c conda-forge gcc=14 -q -y
echo "Installing G++..."
conda install -c conda-forge gxx -y --quiet
conda install -c conda-forge gxx -q -y
echo "Installing ffmpeg and cmake..."
conda install ffmpeg cmake make -y --quiet
conda install ffmpeg cmake make -q -y
echo "Installing unzip..."
conda install unzip -y --quiet