> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Installing for multiple users

The default Anaconda installation option is "Just Me," which creates an independent installation of Anaconda that will not be shared with other users on the same system. The other option is to install for all users.

If you have administrator access, you can choose to install for "All Users". This is a good option for a multi-user system where you want to allow users to import Python libraries and run Python applications.

This option does not give write permissions by default, so the users will not be able to install packages in the base environment. It allows an administrator to protect what is in the base environment. If packages are needed in the base environment, elevate the privileges to administrator from the Command Prompt and run install commands.

<Tabs>
  <Tab title="Windows">
    1. Download the latest [Anaconda Distribution installer](https://www.anaconda.com/download).
    2. Double-click the installer to launch.
    3. Click **Next** to continue.
    4. Read [Anaconda's Terms of Service (TOS)](https://anaconda.com/legal) and click **I Agree**.
    5. Select an install for **All Users** (this requires administrator privileges on the computer) and click **Next**.
    6. Click **Yes** to allow the installer to make changes to your computer.
    7. Select a destination folder that is accessible to the users. The default is `C:\ProgramData\Anaconda`.
    8. After your install is complete, open **Computer Management**, navigate to **Local Users and Groups**. Create a new group for your Anaconda users. Add users to this new group, Anaconda-Users.
    9. Navigate to your Anaconda folder and then right-click and select **Properties**. Clear the checkbox for **Attributes: Read-only** and save changes. Go to **Security** and click **Edit**. From there, add Anaconda-Users and set permissions. Your group will need read and write privileges.
  </Tab>

  <Tab title="Linux">
    <Note>
      sudo access is required.
    </Note>

    1. [Install Anaconda](/getting-started/installation).
    2. After installation is complete, do the following:

    ```sh theme={null}
    #Create a new group
    sudo groupadd mygroup
    # Change the group ownership to "mygroup" on the entire directory where Anaconda is installed.
    # Replace /PATH/TO/ANACONDA/INSTALL with the actual path to your installed Anaconda file.
    sudo chgrp -R mygroup /PATH/TO/ANACONDA/INSTALL
    # Set read and write permission for the owner, root, and the mygroup only.
    # Replace /PATH/TO/ANACONDA/INSTALL with the actual path to your installed Anaconda file.
    sudo chmod 770 -R /PATH/TO/ANACONDA/INSTALL
    # Add users to a group. Replace <USERNAME> with the username of the user you are adding.
    sudo adduser <USERNAME> mygroup
    ```

    Users added to the "mygroup" group now have the ability to access Anaconda, install packages, and create environments.
  </Tab>
</Tabs>
