I am trying to completely uninstall Anaconda from my Mac OS X (El Capitan), and I have followed all the instructions in Here, but my python still seems to be using the 'Anaconda custom' python, which I think I have installed through Anaconda.
I have already removed anaconda directory using rm -rf ~/anaconda
, and I have removed all other related dotfiles like .anaconda, .conda, .continuum, and etc. I also followed conda install anaconda-clean
and anaconda-clean --yes
, and erased the .anaconda_backup as well. I also have checked both .bash_profile and .bashrc, but there were no anaconda related PATH.
But, when I type python -V
on shell, I still get Python 3.5.2 :: Anaconda custom (x86_64)
for its version.
I looked up the pythons in my /usr/bin directory and there seem to have many different python versions existing like python 2.6, python2.7, python2.7-config, etc... and I have no idea which one is the Anaconda custom python that I need to remove. Can anyone help me to remove this Python 3.5.2 :: Anaconda custom?