I've install the conda package as such:
$ wget http://bit.ly/miniconda
$ bash miniconda
$ conda install numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn
I want to uninstall it because it's messing up my pips and environment.
- How do I uninstall conda totally?
- Will it uninstall also my pip managed packages? If so, is there a way to uninstall conda safely without uninstalling packages managed by pip?
your have that comment to line in ~/.bashrc:
and run:
In order to uninstall miniconda, simply remove the
miniconda
folder,this should not remove any of your pip installed packages (but you should check the contents of the
~/miniconda
folder to confirm).As to avoid conflicts between different python environements, you can use
virtualenv
. In particular, with miniconda, the following workflow could be used,