How To: Install Anaconda Without Administrator Privileges on a Mac

Summary

Install Anaconda as user without administrator permissions on a Mac

Body

Question

How do I install Anaconda distribution without administrator permissions on a Mac?

 

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

# Command to download most recent release of Anaconda for Apple Silicon
curl -fsSL https://repo.anaconda.com/archive/ | \
sed -n 's/.*href="\(Anaconda3-[^"]*-MacOSX-arm64\.sh\)".*/\1/p' | \
head -1 | xargs -I{} curl -# -L -o {} https://repo.anaconda.com/archive/{} \
&& chmod u+x {}'

1. Within the folder where the installation script is located, enter "bash Anaconda3-2025.12-2-MacOSX-arm64.sh" to begin the installation process.

Anaconda Navigator install script installation prompt

2. Read and accept the license agreement.

Anaconda License Agreement and Terms of Service Agreement

 

4.  Set Destination Folder to a location you can create and modify files. Press Enter/Return.

Example:  /Users/%UserName%/anaconda3

Choose installation location prompt.

 

5. Installation begins in designated location.

Installation begins in command prompt.

 

6. Prompt to proceed to automatically initialize conda base environment upon launching a shell.

Prompt to configure shell profile to automatically activate base environment.

 

7. Anaconda installation complete.

installation complete

Details

Details

Article ID: 2279
Created
Thu 4/9/26 12:51 PM
Modified
Wed 5/6/26 9:52 AM

Related Articles

Related Articles (8)

Install Anaconda as user without administrator permissions in Windows.
Install Miniconda as user without administrator permissions in Windows.
Install Miniconda as user without administrator permissions on a Mac.
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.