Installing on Windows¶
Download the installer:
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 installation is finished, from the Start menu, open the Anaconda Prompt.
Installing in silent mode¶
NOTE: The following instructions are for Miniconda. For Anaconda,
substitute Anaconda
for Miniconda
in all of the commands.
To run the the Windows installer for Miniconda in
silent mode, use the /S
argument. The following optional arguments are supported:
/InstallationType=[JustMe|AllUsers]
—Default is``JustMe``./AddToPath=[0|1]
—Default is1
’/RegisterPython=[0|1]
—Make this the system’s default Python.0
indicatesJustMe
, which is the default.1
indicatesAllUsers
./S
—Install in silent mode./D=<installation path>
—Destination installation path. Must be the last argument. Do not wrap in quotation marks. Required if you use/S
.
All arguments are case-sensitive.
EXAMPLE: The following command installs Miniconda for the current user without registering Python as the system’s default:
start /wait "" Miniconda4-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /D=%UserProfile%\Miniconda3
Updating conda¶
- Open your Anaconda Prompt from the start menu.
- Navigate to the
anaconda
directory. - Run
conda update conda
.
Uninstalling conda¶
- In the Windows Control Panel, click Add or Remove Program.
- Select Python X.X (Miniconda), where X.X is your version of Python.
- Click Remove Program.
NOTE: Removing a program is different in Windows 10.