In order to uninstall miniconda, simply remove the miniconda folder,

rm -r ~/miniconda/

As for avoiding conflicts between different Python environments, you can use virtual environments. In particular, with Miniconda, the following workflow could be used,

$ wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh
$ bash miniconda
$ conda env remove --yes -n new_env    # remove the environement new_env if it exists (optional)
$ conda create --yes -n new_env pip numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn python=2
$ activate new_env
$ # pip install modules if needed, run python scripts, etc
  # everything will be installed in the new_env
  # located in ~/miniconda/envs/new_env
$ deactivate
Answer from rth on Stack Overflow
🌐
Quora
quora.com › How-do-I-completely-remove-Miniconda-from-a-Mac-OS-X-I-guess-its-messing-up-my-system-I-probably-did-something-wrong-during-the-first-build-install
How do I completely remove Miniconda from a Mac OS X? I guess it's messing up my system; I probably did something wrong during the first ...
Answer (1 of 2): This was the first ... uninstall To uninstall Miniconda open a terminal window and remove the entire miniconda install directory: [code ]rm -rf ~/miniconda[/code]. You may also edit [code ......
Top answer
1 of 7
150

In order to uninstall miniconda, simply remove the miniconda folder,

rm -r ~/miniconda/

As for avoiding conflicts between different Python environments, you can use virtual environments. In particular, with Miniconda, the following workflow could be used,

$ wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh
$ bash miniconda
$ conda env remove --yes -n new_env    # remove the environement new_env if it exists (optional)
$ conda create --yes -n new_env pip numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn python=2
$ activate new_env
$ # pip install modules if needed, run python scripts, etc
  # everything will be installed in the new_env
  # located in ~/miniconda/envs/new_env
$ deactivate
2 of 7
141

The proper way to fully uninstall conda (Anaconda / Miniconda):

  1. Remove all conda-related files and directories using the Anaconda-Clean package

    conda activate your_conda_env_name
    conda install anaconda-clean
    anaconda-clean # add `--yes` to avoid being prompted to delete each one
    
  2. Remove your entire conda directory

    rm -rf ~/miniconda3
    
  3. Remove the line which adds the conda path to the PATH environment variable

    vi ~/.bashrc
    # -> Search for conda and delete the lines containing it
    # -> If you're not sure if the line belongs to conda, comment it instead of deleting it just to be safe
    source ~/.bashrc
    
  4. Remove the backup folder created by the the Anaconda-Clean package NOTE: Think twice before doing this, because after that you won't be able to restore anything from your old conda installation!

    rm -rf ~/.anaconda_backup
    

Reference: Official conda documentation

Discussions

uninstallation - Uninstall Miniconda on MacOS - Stack Overflow
I would like to uninstall Miniconda from my mac. I wanted to follow these instructions but I didn't find similar folders or files in my home directory. However I found the miniconda3 folder in /opt... More on stackoverflow.com
🌐 stackoverflow.com
uninstallation - How to uninstall miniconda via homebrew? - Stack Overflow
Using MacOS Monterey, m1 chip. Installed homebrew and used homebrew to install miniconda. However, the Miniconda which was downloaded via homebrew did not work. Rather, the miniconda installer works. Thus, i would like to uninstall the miniconda that was downloaded via homebrew (to avoid any ... More on stackoverflow.com
🌐 stackoverflow.com
How to fully uninstall Python, Anaconda and VS Code from Mac M1?
Be careful. Iirc, Python 2.7 is a system component on Mac systems. More on reddit.com
🌐 r/learnpython
4
1
February 3, 2022
Why does mac install and uninstall programs so quickly?
Mac apps are totally self contained other than library files they install in places like /applicationsupport, whereas PC apps are more deeply integrated into the core of the OS after installation. You can cleanly uninstall a Mac app just by deleting it and it’s associated library files. Even if you forget the library files you can still usually just delete the app. More on reddit.com
🌐 r/mac
47
27
September 3, 2023
People also ask

Where is Anaconda installed on a Mac?
Anaconda is typically installed in the user directory under the folder name "anaconda3". · Here’s how to find Anaconda’s installation path on your Mac: · Open Finder > Applications > Utilities > Terminal. · Type echo $CONDA_PREFIX and press Return. · Check the output: · For single-user: /Users/your-username/anaconda3 · For system-wide: /opt/anaconda3
🌐
setapp.com
setapp.com › how-to › uninstall-anaconda-on-mac
How to uninstall Anaconda on Mac: Complete removal guide
How to check if Anaconda is installed or not?
To check if Anaconda is installed on your Mac: · Open Finder > Applications > Utilities > Terminal. · Type conda --version and press Return. · If Anaconda is installed, you'll see the version number. · Optional: Type echo $PATH to check if Anaconda’s directory appears in the output.
🌐
setapp.com
setapp.com › how-to › uninstall-anaconda-on-mac
How to uninstall Anaconda on Mac: Complete removal guide
🌐
MacPaw
macpaw.com › how to › optimization › apps
How to uninstall Miniconda: Mac user guide
October 28, 2024 - If you’ve installed Miniconda but no longer use it, you may want to uninstall it. We’ll show you how to uninstall Miniconda on your Mac step by step.
🌐
GitHub
gist.github.com › pulkitgangwar › 421a1af800c5a9c6d4a77b1c252f4565
Removing miniconda from macbook air m1 · GitHub
Removing miniconda from macbook air m1 · Raw · miniconda-removal.md · Create backup with anaconda clean · conda install anaconda-clean anaconda-clean --yes · Remove the miniconda folder · rm -rfv ~/miniconda · Remove the import from .zshrc ...
🌐
Setapp
setapp.com › how-to › uninstall-anaconda-on-mac
How to uninstall Anaconda on Mac: Complete removal guide
March 6, 2026 - To remove Miniconda completely, the process you need to follow is similar to removing Anaconda. ... Go to Finder > Applications > Utilities > Terminal. Uninstall the Miniconda directory by running the command
🌐
Delft Stack
delftstack.com › home › howto › python › uninstall miniconda
How to Uninstall Miniconda Completely | Delft Stack
March 11, 2025 - This tutorial discusses how to uninstall Miniconda completely in Python. Learn effective methods for removing Miniconda from your system, including command-line instructions and manual uninstallation steps. Ensure a clean uninstall and free up space with our comprehensive guide.
Find elsewhere
🌐
MacKeeper
mackeeper.com › blog › mac tutorials › how to delete anaconda from a mac
How to Uninstall Anaconda on a Mac
September 23, 2025 - Simply put, Miniconda is a smaller version of Anaconda. You can also uninstall it through Terminal.
🌐
Anaconda
anaconda.com › docs › getting-started › miniconda › uninstall
Uninstalling Miniconda - Anaconda
If your install is in your \opt\ folder, use the macOS/Linux System uninstall instructions.
🌐
LEMP
lemp.io › how-to-uninstall-miniconda-mac-os
How To Uninstall Miniconda On A Mac – LEMP
December 4, 2022 - To uninstall Miniconda using the “conda” command, first open a terminal window and then type the following: conda install anaconda-clean anaconda-clean will remove any configuration files and folders associated with Miniconda, including the .condarc file in your home directory.
🌐
iBoysoft
iboysoft.com › home › news tips › a full guide on how to uninstall anaconda on mac
A Full Guide on How to Uninstall Anaconda on Mac
January 13, 2026 - Copy, paste, and run this command to remove the Miniconda directory from the PATH environment. ~/.bash_profile · Finally, remove hidden files from the home directory by running: rm -rf ~/.condarc ~/.conda ~/.continuum · Though Anaconda is a really useful tool, you may want to delete it from your Mac computer someday. In this article, we show you how to uninstall Anaconda on Mac through Finder and Terminal.
🌐
CopyProgramming
copyprogramming.com › howto › how-to-uninstall-mini-conda-python
Python: Uninstalling Python's Mini Conda: A Guide
May 3, 2023 - I'm concerned if the uninstallation process will also remove pip managed packages. Is there any way to safely remove conda without affecting pip managed packages? ... To remove miniconda, just delete the directory identified by \ \ \ \ \ miniconda\ \ \ \ .
🌐
Nektony
nektony.com › home › how to › uninstalling anaconda on macos: manual and automatic methods
Uninstall Anaconda from Mac completely | Step-by-step guide
August 1, 2025 - If you no longer need Anaconda on your Mac, its a good idea to remove it properly to free up space and avoid clutter. Whether you prefer doing it manually or using a dedicated uninstaller, this guide will walk you through both approaches step by step.
🌐
Anaconda
docs.anaconda.com › free › anaconda › install › uninstall
Uninstalling Anaconda Distribution — Anaconda documentation
Select the Anaconda/Miniconda installation you want to uninstall. Click Uninstall. Complete the uninstall instructions that appear. (Optional) If you have created any environments outside your anaconda3 directory, you can manually delete them to increase available disc space on your computer. ...
🌐
Resbaz
resbaz.github.io › resbook-installation › python.html
Python | ResBook Installation Directory
If you need to uninstall Miniconda for any reason, open a terminal window and remove the entire Miniconda install directory by typing: rm -rf ~/miniconda
🌐
Saturn Cloud
saturncloud.io › blog › how-to-uninstall-miniconda-on-linux-a-guide
How to Uninstall Miniconda on Linux: A Guide | Saturn Cloud Blog
August 8, 2023 - In this blog, discover a step-by-step guide for uninstalling Miniconda, the lightweight Conda package manager, from your Linux system, helping data scientists efficiently manage their software tools.