Installing Miniconda
This page contains more complex installation instructions for the major operating systems. For a command-line quickstart installation, see Quick Command Line Install.
Note
On Windows, macOS, and Linux, it is best to install Miniconda for the local user, which does not require administrator permissions and is the most robust type of installation. However, if you need to, you can install Miniconda system wide, which does require administrator permissions.
(Optional) Verify your installer’s SHA-256 checksum. This check proves that the installer you downloaded is the original one.
Open PowerShell version 4.0 or later. For instructions for using Windows PowerShell 3.0 or older, see the Cryptographic hash verification instructions in the conda project documentation.
Run the following command, replacing
filename
with the path to your installer.Get-FileHash filename -Algorithm SHA256
Check the hash that appears against the hash listed next to the installer you downloaded. See all Miniconda installer hashes here.
Double-click the
.exe
file.Follow the instructions on the screen. If you are unsure about any setting, accept the defaults. You can change them later.
When the installation finishes, from the Start menu, open Anaconda Prompt.
Test your installation by running
conda list
. If conda has been installed correctly, a list of installed packages appears.
More information on installing in silent mode on Windows is in the conda project documentation.
(Optional) Verify your installer’s SHA-256 checksum. This check proves that the installer you downloaded is the original one.
Open a terminal application.
Run the following command, replacing
filename
with the path to your installer.shasum -a 256 filename
Check the hash that appears against the hash listed next to the installer you downloaded. See all Miniconda installer hashes here.
Double-click the
.pkg
file.Follow the instructions on the screen. If you are unsure about any setting, accept the defaults. You can change them later.
When the installation finishes, open your terminal application.
Test your installation by running
conda list
. If conda has been installed correctly, a list of installed packages appears.
More information on installing in silent mode on macOS is in the conda project documentation.
(Optional) Verify your installer’s SHA-256 checksum. This check proves that the installer you downloaded is the original one.
Open your terminal.
Run the following command, replacing
filename
with the path to your installer.sha256sum filename
Check the hash that appears against the hash listed next to the installer you downloaded. See all Miniconda installer hashes here.
In your terminal, run the following command, replacing
filename
with the path to your installer.bash filename
Follow the prompts on the installer screens.
If you are unsure about any setting, accept the defaults. You can change them later.
To make the changes take effect, close and then re-open your terminal window.
Test your installation by running
conda list
. If conda has been installed correctly, a list of installed packages appears.