so I tried to do a clean uninstall of anaconda from my MacBook Air m1. I have followed this steps on the official site(Option B): https://docs.anaconda.com/anaconda/install/uninstall/
The first command worked "conda install anaconda-clean"
The second didn't "anaconda-clean --yes"
Output: zsh: command not found: anaconda-clean
Same when trying "anaconda-clean"
Why doesn't it work? I didn't change directory and successfully installed the anaconda-clean package. How to solve it?
thanks
./anaconda-clean --yes
(in the directory where "anaconda-clean" is located – Acutewhereis anaconda-clean
does not work, thenfind / -name anaconda-clean
should work (but take some more time). (The results should tell you that it is in in theanaconda3/bin
directory) – Acute