How to uninstall mini conda? python
In order to uninstall miniconda, simply remove the miniconda folder, rm -r ~/miniconda/ As for avoiding conflicts between different Python environments, you can use virtual environments. In particular, with Miniconda, the following workflow could be used, $ wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh $ bash miniconda $ conda env remove –yes -n new_env # remove the environement … Read more