Configuration files to create conistent Anaconda environments.
The condarc controls the basic behavior of the conda
command, like
changing the shell prompt or the list of channels to search for packages.
It is stored in the user's home directory:
cp condarc $HOME/.condarc
The environment.yml can be used to either create a new environment or to update the existing base environment.
conda env create -f environment.yml # new environment
conda env update -n base -f environment.yml # update `base` environment