Viewing history of conda transactions?

There is a --revisions, -r flag for this.

conda list --revisions

Check the conda list --help for more info.

If you’d like an exact history, there is a conda-meta/history log in every environment. You could, for example, pull out every command ever executed in an environment, plus a timestamp, using

grep -B1 "^# cmd" ${CONDA_PREFIX}/conda-meta/history

Leave a Comment