This post introduces how to install Miniconda on Mac.
(For installing Miniconda on Linux OS, check out this post.)
(For commonly used conda commands check this post.)
(For the comparison among Anaconda, Miniconda, and Virtualenv with pip, check this post.)
Step 1: download Miniconda (bash installer) from
https://docs.conda.io/en/latest/miniconda.html
see the highlighted in the pic below.
A file called Miniconda3-latest-MacOSX-x86_64.sh will be shown in your Downloads folder.
Step 2: Open a Terminal window.
(If you don’t know how to open a terminal window, through lauchpad type in Terminal, you will see the application.)
In the terminal window, type in
$ cd Downloads
Step 3: run the bash “shell” script to install Miniconda
In the terminal window, type in the following.
$ bash Miniconda3-latest-MacOSX-x86_64.sh
Scroll through the license (press the Space bar or Enter to move through quickly), type ‘yes’ to approve the terms, and then accept all the installation defaults.
Step 4: Close the Terminal window, and open a new Terminal window.
in the newly opened Terminal window.
Type the following:
$ conda -V
If you see something like the following, it means you have successfully installed conda via miniconda on your Mac.
conda 4.5.11
Step 5: Uninstalling Miniconda
To uninstall Python Anconda/Miniconda, we just simply remove the installation folder and remove the environment variables set in the hidden file .bash_profile in your home directory. For my installation, it will be just like this.
$ rm -rf /users/my-user-name/miniconda/
$ rm -rf /users/my-user-name/anaconda/
Then, you can edit the .bash_profile file and remove the following entries added for Anaconda/Miniconda directory from your PATH environment variable.
# added by Miniconda3 installer
$ export PATH="/Users/my-user-name/miniconda3/bin:$PATH"
# added by Anaconda3 installer
$ export PATH="/Users/my-user-name/anaconda3/bin:$PATH"
If you do not know where the hidden .bash_profile is located and how to edit it, see below for detailed instructions.
(1) Open a new terminal and go to your home directory. You can do this by using the command below.
$ cd
(2) use the following command to list all files, including hidden files in your home directory.
$ ls -a # you should see there is a file called .bash_profile.
(3) Use the cat
command to see the contents of the hidden file .bash_profile. Type the following command into your terminal.
$ cat .bash_profile
You will see something like the following (depends on what you installed, if you installed Miniconda3, you will only see the first two lines. If you installed Anaconda3, you will see the bottom two lines.
# added by Miniconda3 installer $ export PATH="/Users/my-user-name/miniconda3/bin:$PATH" # added by Anaconda3 installer $ export PATH="/Users/my-user-name/anaconda3/bin:$PATH"
(4) To remove installed Miniconda/Anaconda from your .bash_profile use the command below to edit the file using the nano editor.
$ nano .bash_profile
Remove the Miniconda /Anoconda path in your .bash_profile hidden file.
Then Type control + X to exit out of nano
Save changes by typing Y.
Close the terminal, and now Miniconda/Anaconda should be successfully uninstalled from your Mac.
(Tested on macOS Mojave. Note that you can install Miniconda onto your Mac even when you are not an admin user.)
For commonly used conda commands check this post.
For the comparison among Anaconda, Miniconda, and Virtualenv with pip, check this post.