anaconda-project
anaconda-project copied to clipboard
--verbose should be passed through to other places, such as conda
I wanted to know why my conda environment wasn't getting created properly, so I used the --verbose
flag on anaconda-project run
. But then the conda
command that is executed is run with --quiet
, so I can't see what I was hoping to see:
$ anaconda-project --verbose run
$ conda create --yes --quiet --prefix /Users/ijstokes/tmp/r_shiny_distribution/envs/default --channel r r-getopt=1.20.0 python r=3.3.2 r-rjson=0.2.15 gettext=0.19.8 r-devtools=1.12.0 r-proto=1.0.0 r-shiny=0.14.2 r-findpython=1.0.1 r-argparse=1.0.4
This is partly addressed in #14 which will pass the conda output (or json events anyway) through, but leaving open for specifically a way to pass --verbose to conda.