I'm trying to uninstall the conda distribution on my Mac using the following standard commands:
conda install anaconda-clean
anaconda-clean -yes
rm -rf ~/anaconda3
rm -rf ~/.anaconda_backup
However, I keep getting the error:
Preparing transaction: done
Verifying transaction: failed
RemoveError: 'requests' is a dependency of conda and cannot be removed from
conda's operating environment.
To address the above error I try:
conda update conda
Or:
conda update --force conda
Which in turn returns:
CondaVerificationError: The package for matplotlib-inline located at appears to be corrupted. The path specified in the package manifest cannot be found.
How do I solve this error?