diff --git a/scripts/install_via_conda.sh b/scripts/install_via_conda.sh index 31e041c453..14767c047a 100755 --- a/scripts/install_via_conda.sh +++ b/scripts/install_via_conda.sh @@ -16,31 +16,27 @@ while getopts 'nf' flag; do # update conda # removing due to setuptools error during update #conda update -y -n base -c defaults conda -conda update --all --yes +conda update -q --all --yes # required to use conda develop -conda install -y conda-build - -# Use faster conda solver -conda install -n base conda-libmamba-solver -conda config --set solver libmamba +conda install -q -y conda-build # install other frameworks if asked for and make sure this is before pytorch if [[ $FRAMEWORKS == true ]]; then - pip install pytext-nlp + pip install -q pytext-nlp fi if [[ $PYTORCH_NIGHTLY == true ]]; then # install CPU version for much smaller download - conda install -y pytorch cpuonly -c pytorch-nightly + conda install -q -y pytorch cpuonly -c pytorch-nightly else # install CPU version for much smaller download - conda install -y -c pytorch pytorch-cpu + conda install -q -y -c pytorch pytorch-cpu fi # install other deps -conda install -y pytest ipywidgets ipython scikit-learn parameterized -conda install -y -c conda-forge matplotlib pytest-cov flask flask-compress +conda install -q -y pytest ipywidgets ipython scikit-learn parameterized +conda install -q -y -c conda-forge matplotlib pytest-cov flask flask-compress # install captum python setup.py develop