Skip to main content
Silent mode installation allows Anaconda Distribution or Miniconda to be installed automatically without user interaction, making it ideal for automated deployments, enterprise environments, or when installing across multiple machines. When launching the installer in silent mode, you can supply the installation arguments detailed below through your command line interface (CLI) or with a script.
These command-line instructions will get you set up quickly with the latest Anaconda Distribution installer. Follow the steps for your system to download and silently install Anaconda Distribution:
  1. Download the Anaconda Distribution installer manually from anaconda.com/download or use one of the following commands to download the installer with Command Prompt or Powershell:
    curl https://repo.anaconda.com/archive/Anaconda3-2025.12-2-Windows-x86_64.exe --output .\Anaconda3-2025.12-2-Windows-x86_64.exe
    
    For instructions on downloading an older installer version, see Using older installer versions.
  2. Run the Windows installer for Anaconda Distribution in silent mode by using the /S argument. The following optional arguments are also supported: All arguments are case-sensitive. For example, the following batch file command installs Anaconda Distribution for the current user without registering Python as the system’s default:
    start /wait "" Anaconda3-2025.12-2-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /D=%UserProfile%Anaconda3
    
    As of Anaconda Distribution 2022.05, the option to add Anaconda to the PATH environment variable during an All Users installation has been disabled. This was done to address a security exploit. You can still add Anaconda to the PATH environment variable during a Just Me installation.

Troubleshooting