I'd like to see the date I made a mamba environment on my linux machine. I can't find anything in the docs for this. I tried the following command, but it didn't give me the info I wanted.
mamba env export --from-history -n moose_peacock
Any suggestions (other than detective work with package version release dates)?
Conda Metadata
Conda environments1 keep metadata in the
${CONDA_PREFIX}/conda-meta
folder and specifically the first line of the${CONDA_PREFIX}/conda-meta/history
file records the date of the first transaction (creation).Example: Single Environment
Let's create an environment and then check the first few lines of the
history
file:Interactive (Activating) Environment
Single-Line Command with Conda Run
Script for All Environments
The following bash script will list this information for all non-base environments:
show-env-creation-all.sh
which can be run with:
[1]: The term "Mamba environment" is a misnomer. Mamba is an interface for Conda environments - it's all still Conda.