How-To: Install Miniconda Without Administrator Privileges in Windows

Question

How do I install Miniconda without administrator permissions in Windows?

 

Answer

Note:  Once you have acquired the distribution installation file by following the IT Compliance Guidelines, follow the below steps.

# PowerShell script to download most recent release of Miniconda for Windows 11 x86_64
$f = (Invoke-WebRequest https://repo.anaconda.com/miniconda/ -UseBasicParsing).Content | `
Select-String -Pattern 'href="(Miniconda3-[^"]*-Windows-x86_64\.exe)"' -AllMatches | `
ForEach-Object { $_.Matches[0].Groups[1].Value } | `
Select-Object -First 1; `
Invoke-WebRequest "https://repo.anaconda.com/miniconda/$f" -UseBasicParsing -OutFile $f

1. Double click on installation .exe file. Installation Welcome window displayed, click Next.

Anaconda install Welcome window.

 

2. Read and accept the license agreement. 

Anaconda License Agreement window

 

3. Select Install for: to Just Me (recommended). Click Next.

Select Installation Type window with "Just Me" selected.

 

4.  Set Destination Folder to a location you can create and modify files. Click Next.

Example:  C:\Users\%YourUserName%\miniconda3

Choose installation location window.

 

5. Accept Advanced Options Defaults for most users by clicking on Install.

Advanced Installation Options window with defaults selected.

 

6. Installation begins.

Installation in progress.

 

7. Click Next to complete installation.

Installation complete window.

 

8. Click Finish to complete setup.

Finish setup window with launch tips and resources.

 

 

 

Print Article

Related Articles (10)

Install Anaconda as user without administrator permissions on a Mac
Install Anaconda as user without administrator permissions in Windows.
Install Miniconda as user without administrator permissions on a Mac.
Activate a Conda Environment in the command line interface in Windows.
Create a Conda Environment from a YAML formatted file via Command Line Interface .
Create a Conda Environment in the command line interface in Windows.
Open Windows Anaconda Prompt and MacOS Terminal Command Line Interface in a Virtual Conda Environment
Compare three versions of the Conda engine to help you pick the best one for your technical skills and computer type. You can choose Anaconda Navigator for a beginner-friendly, "point-and-click" experience, or go with Miniconda or Miniforge if you prefer a lightweight, professional setup that saves disk space. While they differ in size and interface, all three create isolated "sandboxes" to ensure your software projects don't interfere with each other.
A central guide for researchers to build stable and high-performance coding environments using the Conda ecosystem. It brings together best practices—such as choosing the right distribution and using "blueprints" to share work—to help you avoid technical conflicts and ensure your research can be perfectly recreated by others. By following these strategies, you can protect your productivity and make your software projects both portable and reliable.
Index of Miniconda How-To Articles for Virtual Conda Environments