Uninstall Anaconda Navigator on Mac? Here's How (Fast!)

Anaconda, a popular Python distribution favored by data scientists, often includes the Anaconda Navigator. The Navigator, a GUI, may sometimes need removal from your macOS system. When that happens and you need to know how to uninstall anaconda navigator on mac, this guide will help. In some instances, users find the command-line interface provided by conda itself a more direct approach for environment management than the Navigator. Proper removal can also free up valuable disk space, especially on machines with limited storage, and that's why understanding how to uninstall anaconda navigator on mac is essential. This comprehensive guide will show you everything you need to know about how to properly uninstall Anaconda Navigator on your Mac, and will even delve into uninstalling Anaconda as well!

Image taken from the YouTube channel Skilled Engg , from the video titled How to Uninstall Anaconda on Mac | How to Uninstall Anaconda Navigator on Mac (Pro/ Mac M1/ M2/ M3) .
Uninstalling Anaconda Navigator on Your Mac: A Quick Guide
If you're looking to remove Anaconda Navigator from your Mac, this guide provides simple, step-by-step instructions. Whether you're freeing up disk space or switching to a different environment, we'll cover the entire process to ensure a complete uninstall.
Preparation: Closing Anaconda Processes
Before uninstalling, it's crucial to close all Anaconda-related applications and processes. Leaving them running can interfere with the removal process and potentially lead to incomplete uninstallation.
-
Anaconda Navigator: Ensure the Anaconda Navigator application is completely closed. Check the dock to see if a dot is present beneath the Anaconda icon, indicating it's still running. If so, right-click the icon and select "Quit".
-
Anaconda Processes: Open "Activity Monitor" (found in Applications/Utilities). Search for processes like "anaconda", "conda", "python", or "jupyter". If any are running, select them and click the "X" button in the toolbar to force quit them.
Step-by-Step Uninstall Instructions
This section outlines the recommended methods for completely removing Anaconda Navigator from your Mac.
Method 1: Using the Anaconda-Clean Package
This method uses the Anaconda-Clean package for a more thorough removal of Anaconda-related files.
-
Open Terminal: Launch the Terminal application, found in Applications/Utilities.
-
Install Anaconda-Clean (if not already installed): Type the following command and press Enter:
conda install anaconda-clean
You might be prompted to confirm the installation. Type "y" and press Enter.
-
Run Anaconda-Clean: Execute the following command:
anaconda-clean
The program will ask for confirmation before removing each file/directory. You can bypass this by adding the
--yes
flag:anaconda-clean --yes
-
Remove the Anaconda Directory: After running
anaconda-clean
, a backup of your Anaconda directory is created (typically namedanacondaX_backup
, where X is the version number). Now, remove the original Anaconda directory using therm -rf
command. First, determine the Anaconda installation directory. The default is usually in your home directory. If you're unsure, you can try:echo $CONDA_PREFIX
or
which conda
Then, use the following command, replacing
/path/to/anaconda
with the actual path you found:rm -rf /path/to/anaconda
Caution: Be extremely careful with the
rm -rf
command as it permanently deletes files and directories without prompting for confirmation. Double-check the path before executing.
Method 2: Manual Removal
This method involves manually deleting Anaconda-related files and directories. While effective, it requires more attention to detail.
-
Remove the Anaconda Directory: As with Method 1, locate your Anaconda installation directory. The default is usually in your home directory. Then, remove it using the
rm -rf
command:rm -rf /path/to/anaconda
-
Remove Conda Configuration Files: Delete the
.conda
and.condarc
files from your home directory:rm -rf ~/.conda ~/.condarc
-
Remove Anaconda Applications: Delete the Anaconda Navigator application from your Applications folder. Also, remove any other Anaconda-related applications you find.
-
Remove Anaconda from PATH: Edit your
~/.bash_profile
,~/.zshrc
, or similar shell configuration file to remove the line that adds Anaconda to your PATH. This line usually looks something like:export PATH="/path/to/anaconda/bin:$PATH"
Use a text editor (like
nano
,vim
, or a GUI text editor) to open the file and delete the line.For example, to edit
~/.zshrc
with nano:nano ~/.zshrc
After editing, save the file and close the text editor. Then, source the file to apply the changes:
source ~/.zshrc
Post-Uninstall Verification
After following either method, it's important to verify that Anaconda has been successfully uninstalled.
-
Check the PATH: Open a new Terminal window and type
conda --version
. If Anaconda is properly uninstalled, this command should return "command not found" or a similar error message. -
Check for Residual Files: Manually browse your system to ensure no Anaconda-related files or directories remain. Pay attention to your home directory and Applications folder.
Troubleshooting
This section addresses common issues encountered during the uninstallation process.
Error: "Permission Denied"
If you encounter "Permission denied" errors while removing files or directories, try using the sudo
command before the rm -rf
command. For example:
sudo rm -rf /path/to/anaconda
You'll be prompted for your administrator password.
Anaconda Still Appears in the PATH
If conda
commands still work after uninstalling, double-check your shell configuration files (~/.bash_profile
, ~/.zshrc
, etc.) to ensure the Anaconda PATH entry has been completely removed. Also, check other potential configuration files like ~/.profile
or /etc/paths
.

Anaconda Navigator Still Starts
If Anaconda Navigator still starts even after deleting the application, it may be due to cached files or lingering processes. Restart your computer and try again. Also, double check that you have removed it from the Applications folder.
Video: Uninstall Anaconda Navigator on Mac? Here's How (Fast!)
Uninstalling Anaconda Navigator on Mac: Frequently Asked Questions
Here are some common questions about how to uninstall Anaconda Navigator on Mac, providing clarity and assistance during the process.
What if I just want to uninstall Anaconda Navigator, but keep Anaconda itself?
You can uninstall Anaconda Navigator on Mac specifically without affecting the underlying Anaconda installation. Follow the instructions in the article, making sure you target only the Navigator application for removal, not the entire Anaconda directory.
What's the fastest way to uninstall Anaconda Navigator on Mac completely?
The fastest way is to use the command line. After ensuring Anaconda Navigator isn't running, you can remove the Anaconda Navigator application and then remove any related environment variables. This provides a cleaner and quicker uninstall than manually searching for all files.
Will uninstalling Anaconda Navigator remove my Python environments?
No, uninstalling Anaconda Navigator will not remove your Python environments. These environments are stored separately. When you uninstall Anaconda Navigator on Mac, only the graphical interface and associated files are removed, leaving your environments intact.
What do I do if I encounter errors while trying to uninstall Anaconda Navigator on Mac?
If you run into errors, ensure that Anaconda Navigator and any related processes are fully closed before attempting to uninstall. You may need to use Activity Monitor to force quit processes. Also, double-check the paths you're using in the terminal to ensure accuracy when you uninstall Anaconda Navigator on Mac via the command line.