conda: remove all installed packages from base/root environment conda: remove all installed packages from base/root environment python python

conda: remove all installed packages from base/root environment


Apparently, I can't remove packages from the current environment(?!)

It's not that, but instead that you can't remove the base environment, which is what the --all flag does. You can't uninstall all packages in base because that's where the conda executable lives. Instead, what you want to do is uninstall all user-installed packages.

Full Reversion (Not Recommended)

One way to do this is to revert your environment back to the original state before you installed any additional packages:

# Not generally recommended!conda install --revision 0

Be aware the multiple users have reported this breaking their Conda installation. I definitely would not run this on an installation that you have had for a long time or has many revisions.

Most importantly: Always review the proposed transactions in the base env! This is where Conda lives and unfortunately the safeguards against breaking an installation are not comprehensive.

If you really want a clean start, then export your envs to YAMLs and reinstall a fresh Miniconda.

Partial Reversion

You can also look for other previous states that might be less of a regression, but still get rid of whatever packages you think you've unnecessarily accumulated.

conda list -n base -r

In the end, you'll probably want to upgrade conda right after, since it will also revert any updates to the base packages.


Errors, oh my!

While the above is the correct way to revert, I encounter the error:

CondaRevisionError: Cannot revert to 0, since ::contextlib2-0.5.3-py35_0 is not in repodata.

As an aside, this sort of worries me because it seems to indicate that the state of my Conda environment from two years ago is no longer reproducible from the state of the upstream channels.

Under this situtation, I don't know a clean way to solve this other than comparing all the revision 0 packages to your current install and then uninstalling the difference. But again, a clean install of Miniconda seems like a nicer solution.

Generally, I've found that treating envs as immutable and installing as little as possible in base is the safest and most reliable way to use Conda.


I had the same problem as you did, this is what I did:

  1. backup my conda-env:

    i. activate the env i want keep, such as 'ml'

    ii. type conda-env export > /path/to/save/file/environment.yml

  2. activate base and revert base env to initial: type conda install --revision 0, this should take some time...(this command did not revert ALL my envs, just the BASE env)

  3. load your .yml file: type conda env create -f /path/to/save/file/environment.yml