clearml-agent icon indicating copy to clipboard operation
clearml-agent copied to clipboard

Provide option for conda installation parameters

Open H4dr1en opened this issue 5 years ago • 1 comments

First, thanks for the great work 👍

Currently, agents with package_manager.type = conda will install silently using --quiet:

Executing Conda: /home/h4dr1en/miniconda3/bin/conda install -p /home/h4dr1en/.trains/venvs-builds/3.6 -c defaults -c conda-forge -c pytorch pip==20.1 --quiet --json

For debugging purposes, it would be great if instead one could specify other parameters acceptable by conda install, notably -v

H4dr1en avatar May 05 '20 13:05 H4dr1en

@H4dr1en that sounds like a good idea, there is already a --debug flag, but it will not output the conda results to screen. Should not be a problem to add :) btw: --quiet --json will just remove the upgrade banner, the actual full return results are in the json format, so just printing it out should give you an insight on what's going on.

bmartinn avatar May 06 '20 08:05 bmartinn