From the docs:
To uninstall Anaconda open a terminal window and remove the entire anaconda install directory:
rm -rf ~/anaconda. You may also edit~/.bash_profileand remove the anaconda directory from yourPATHenvironment variable, and remove the hidden.condarcfile and.condaand.continuumdirectories which may have been created in the home directory withrm -rf ~/.condarc ~/.conda ~/.continuum.
Further notes:
- Python3 installs may use a
~/anaconda3dir instead of~/anaconda. - You might also have a
~/.anacondahidden directory that may be removed. - Depending on how you installed, it is possible that the
PATHis modified in one of your runcom files, and not in your shell profile. So, for example if you are using bash, be sure to check your~/.bashrcif you don't find thePATHmodified in~/.bash_profile.
From the docs:
To uninstall Anaconda open a terminal window and remove the entire anaconda install directory:
rm -rf ~/anaconda. You may also edit~/.bash_profileand remove the anaconda directory from yourPATHenvironment variable, and remove the hidden.condarcfile and.condaand.continuumdirectories which may have been created in the home directory withrm -rf ~/.condarc ~/.conda ~/.continuum.
Further notes:
- Python3 installs may use a
~/anaconda3dir instead of~/anaconda. - You might also have a
~/.anacondahidden directory that may be removed. - Depending on how you installed, it is possible that the
PATHis modified in one of your runcom files, and not in your shell profile. So, for example if you are using bash, be sure to check your~/.bashrcif you don't find thePATHmodified in~/.bash_profile.
The anaconda installer adds a line in your ~/.bash_profile script that prepends the anaconda bin directory to your $PATH environment variable. Deleting the anaconda directory should be all you need to do, but it's good housekeeping to remove this line from your setup script too.
Where is Anaconda installed on a Mac?
How to check if Anaconda is installed or not?
Videos
i tried to download an ai called "deep-daze" that basically creates images for what you put that you want it to imagine, sadly my dumbass didnt follow iinstructions and so i decided to delete it but after i delete it, windows powershell comes up with this, "& : The term 'C:\ProgramData\Anaconda3\Scripts\conda.exe' is not recognized as the name of a cmdlet, function, script
file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
and try again.
At C:\Users\bdwg1\Documents\WindowsPowerShell\profile.ps1:4 char:4
+ (& "C:\ProgramData\Anaconda3\Scripts\conda.exe" "shell.powershell" "h ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\ProgramData\...ripts\conda.exe:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException"
how would i remove every environment to get rid of this
To remove the configs:
conda install anaconda-clean
anaconda-clean --yes
Once the configs are removed you can delete the anaconda install folder, which is usually under your home dir:
rm -rf ~/anaconda3
Also, the anaconda-clean --yes command creates a backup in your home directory of the format ~/.anaconda_backup/<timestamp>. Make sure to delete that one also.
EDIT (v5.2.0): Now if you want to clean all, you will also have to delete the two last lines added to your .bash_profile. They look like:
# added by Anaconda3 5.2.0 installer
export PATH="/Users/ody/anaconda3/bin:$PATH"
To uninstall Anaconda open a terminal window:
- Remove the entire anaconda installation directory:
rm -rf ~/anaconda
- Edit
~/.bash_profileand remove the anaconda directory from yourPATHenvironment variable.
Note: You may need to edit .bashrc and/or .profile files instead of .bash_profile
Remove the following hidden files and directories, which may have been created in the home directory:
.condarc.conda.continuum
Use:
rm -rf ~/.condarc ~/.conda ~/.continuum