> ## 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.

# Using older installer versions

export const Comments = ({children}) => {
  return <div class="my-4 px-5 py-4 overflow-hidden rounded-2xl flex gap-3 border border-zinc-500/20 bg-zinc-50/50 dark:border-zinc-500/30 dark:bg-zinc-500/10" data-callout-type="comments">
      <div class="w-4">
        <svg width="14" height="14" viewBox="0 0 640 640" fill="currentColor" xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" aria-label="Comments">
            <path d="M320 112C434.9 112 528 205.1 528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112zM320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576zM280 400C266.7 400 256 410.7 256 424C256 437.3 266.7 448 280 448L360 448C373.3 448 384 437.3 384 424C384 410.7 373.3 400 360 400L352 400L352 312C352 298.7 341.3 288 328 288L280 288C266.7 288 256 298.7 256 312C256 325.3 266.7 336 280 336L304 336L304 400L280 400zM320 256C337.7 256 352 241.7 352 224C352 206.3 337.7 192 320 192C302.3 192 288 206.3 288 224C288 241.7 302.3 256 320 256z" />
        </svg>
      </div>
      <div class="text-sm prose min-w-0 w-full">
        {children}
      </div>
    </div>;
};

export const GCell = ({children, className}) => <div className={`grid-table-cell ${className || ""}`} role="cell">
    {children}
  </div>;

export const GTH = ({children, className}) => <div className={`grid-table-th ${className || ""}`} role="columnheader">
    {children}
  </div>;

export const GRow = ({children}) => <div className="grid-table-row" role="row">{children}</div>;

export const GBody = ({children}) => <div className="grid-table-body" role="rowgroup">{children}</div>;

export const GHead = ({children}) => <div className="grid-table-head" role="rowgroup">{children}</div>;

export const GTable = ({children, className, cols}) => <div className={`grid-table not-prose overflow-hidden rounded-2xl ${className || ""}`} style={{
  "--grid-table-cols": cols
}} role="table">
    {children}
  </div>;

Anaconda recommends upgrading your operating system to the latest available or to one that is commonly used and supported. Upgrading your OS allows you to get the latest packages, performance improvements, bug fixes, and more.

Anaconda Distribution and Miniconda installers are currently available for the following architectures:

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Architecture</GTH>
      <GTH>File name ending</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>Windows 64-bit</GCell>
      <GCell>`Windows-x86_64.exe`</GCell>
    </GRow>

    <GRow>
      <GCell>macOS Apple Silicon</GCell>
      <GCell>`MacOSX-arm64.pkg`, `MacOSX-arm64.sh`</GCell>
    </GRow>

    <GRow>
      <GCell>Linux x86\_64</GCell>
      <GCell>`Linux-x86_64.sh`</GCell>
    </GRow>

    <GRow>
      <GCell>Linux AWS Graviton 2/ARM 64</GCell>
      <GCell>`Linux-arm64.pkg`, `Linux-aarch64.sh`</GCell>
    </GRow>
  </GBody>
</GTable>

## Installing older versions

<Note>
  Older versions of Anaconda Distribution are still subject to Anaconda's [Terms of Service](https://anaconda.com/legal) and older versions of Miniconda are still subject to [Miniconda's End User License Agreement (EULA)](https://www.anaconda.com/legal/terms/miniconda).
</Note>

Older versions of Anaconda Distribution and Miniconda are still available for the following architectures:

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Architecture</GTH>
      <GTH>File name ending</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>Windows 32-bit</GCell>
      <GCell>`Windows-x86.exe`</GCell>
    </GRow>

    <GRow>
      <GCell>macOS Intel</GCell>
      <GCell>`MacOSX-x86_64.pkg`, `MacOSX-x86_64.sh`</GCell>
    </GRow>

    <GRow>
      <GCell>Linux 32-bit Intel or AMD</GCell>
      <GCell>`Linux-x86.sh`</GCell>
    </GRow>

    <GRow>
      <GCell>Linux IBM Power CPU</GCell>
      <GCell>`Linux-ppc64le.sh`</GCell>
    </GRow>

    <GRow>
      <GCell>Linux IBM Z</GCell>
      <GCell>`Linux-s390x.sh`</GCell>
    </GRow>
  </GBody>
</GTable>

Use the following instructions to download an older installer file for Anaconda Distribution or Miniconda:

<Note>
  These installations are no longer supported by Anaconda and most are no longer receiving security updates.
</Note>

<Tabs>
  <Tab title="Anaconda Distribution">
    1. View a full list of Anaconda Distribution installers in the official [archive](https://repo.anaconda.com/archive/).
    2. Copy the **filename** of an installer from the archive, then download it using a `curl`, `wget`, or `Invoke-Webrequest` command:

           <Note>
             Make sure to choose an installer that is compatible with your operating system and architecture.

             ***

             Installer filenames include the Anaconda Distribution version and platform. For example, `https://repo.anaconda.com/archive/Anaconda3-2025.12-1-MacOSX-arm64.sh` is Anaconda Distribution version 2025.12-1 on macOS with ARM64 architecture (Apple Silicon).
           </Note>

           <Tabs>
             <Tab title="Windows">
               <CodeGroup>
                 ```sh Command Line theme={null}
                 curl https://repo.anaconda.com/archive/<FILENAME> --output <PATH_TO_FILENAME>
                 ```

                 ```sh Powershell theme={null}
                 Invoke-WebRequest -Uri "https://repo.anaconda.com/archive/<FILENAME>" -OutFile "<PATH_TO_FILENAME>"
                 ```

                 ```sh Command Line Example theme={null}
                 curl https://repo.anaconda.com/archive/Anaconda3-2025.12-1-Windows-x86_64.exe --output .\Anaconda3-2025.12-1-Windows-x86_64.exe
                 ```

                 ```sh Powershell Example theme={null}
                 Invoke-WebRequest -Uri "https://repo.anaconda.com/archive/Anaconda3-2025.12-1-Windows-x86_64.exe" -OutFile ".\Anaconda3-2025.12-1-Windows-x86_64.exe"
                 ```
               </CodeGroup>

               <Comments>
                 Replace \<FILENAME> with the installer filename you copied from the Anaconda Distribution archive.<br />
                 Replace \<PATH\_TO\_FILENAME> with the path to the file you want to save the installer to.
               </Comments>
             </Tab>

             <Tab title="macOS">
               <CodeGroup>
                 ```sh curl Command theme={null}
                 curl -O https://repo.anaconda.com/archive/<FILENAME>
                 ```

                 ```sh Apple Silicon Example theme={null}
                 curl -O https://repo.anaconda.com/archive/Anaconda3-2025.12-2-MacOSX-arm64.sh
                 ```

                 ```sh Intel Example theme={null}
                 curl -O https://repo.anaconda.com/archive/Anaconda3-2025.06-1-MacOSX-x86_64.sh
                 ```
               </CodeGroup>

               <Comments>
                 Replace \<FILENAME> with the installer filename you copied from the Anaconda Distribution archive.
               </Comments>
             </Tab>

             <Tab title="Linux">
               <CodeGroup>
                 ```sh curl Command theme={null}
                 curl -O https://repo.anaconda.com/archive/<FILENAME>
                 ```

                 ```sh wget Command theme={null}
                 wget https://repo.anaconda.com/archive/<FILENAME>
                 ```

                 ```sh curl Example theme={null}
                 curl -0 https://repo.anaconda.com/archive/Anaconda3-2025.12-1-Linux-x86_64.sh
                 ```

                 ```sh wget Example theme={null}
                 wget https://repo.anaconda.com/archive/Anaconda3-2025.12-1-Linux-x86_64.sh
                 ```
               </CodeGroup>

               <Comments>
                 Replace \<FILENAME> with the installer filename you copied from the Anaconda Distribution archive.
               </Comments>
             </Tab>
           </Tabs>

       Once you have your installer file downloaded, continue with the install instructions linked below, skipping the download step:

       * [Windows install instructions](/getting-started/anaconda/install/windows-cli-install)
       * [macOS install instructions](/getting-started/anaconda/install/mac-cli-install)
       * [Linux install instructions](/getting-started/anaconda/install/linux-install)

           <Warning>
             You might not be able to use conda to update or install packages beyond what is included in the Anaconda Distribution version you've installed. This is because Anaconda Distribution provides a static bundle of packages from the time of release, but the repository continues to be updated over time. Older package versions might be removed or replaced, and the versions present in the repository might not be compatible with your operating system. For package lists for each version of Anaconda Distribution, see the [Anaconda Distribution release notes](/getting-started/anaconda/release-notes).
           </Warning>
  </Tab>

  <Tab title="Miniconda">
    1. View a full list of Miniconda installers in the official [Miniconda archive](https://repo.anaconda.com/miniconda/).
    2. Copy the **filename** of an installer from the archive, then download it using a `curl`, `wget`, or `Invoke-Webrequest` command:

           <Note>
             Make sure to choose an installer that is compatible with your operating system and architecture.

             ***

             Installer filenames include the Python version, Miniconda version, and platform. For example, `Miniconda3-py312_24.5.0-0-MacOSX-arm64.sh` is Miniconda version 24.5.0 for Python 3.12 on macOS with ARM64 architecture (Apple Silicon).
           </Note>

           <Tabs>
             <Tab title="Windows">
               <CodeGroup>
                 ```sh Command Line theme={null}
                 curl https://repo.anaconda.com/miniconda/<FILENAME> --output <PATH_TO_FILENAME>
                 ```

                 ```sh Powershell theme={null}
                 Invoke-WebRequest -Uri "https://repo.anaconda.com/miniconda/<FILENAME>" -OutFile "<PATH_TO_FILENAME>"
                 ```

                 ```sh Command Line Example theme={null}
                 curl https://repo.anaconda.com/miniconda/Miniconda3-py313_25.11.1-1-Windows-x86_64.exe --output .\Miniconda3-py313_25.11.1-1-Windows-x86_64.exe
                 ```

                 ```sh Powershell Example theme={null}
                 Invoke-WebRequest -Uri "https://repo.anaconda.com/miniconda/Miniconda3-py313_25.11.1-1-Windows-x86_64.exe" -OutFile ".\Miniconda3-py313_25.11.1-1-Windows-x86_64.exe"
                 ```
               </CodeGroup>

               <Comments>
                 Replace \<FILENAME> with the installer filename you copied from the Anaconda Distribution archive.<br />
                 Replace \<PATH\_TO\_FILENAME> with the path to the file you want to save the installer to.
               </Comments>
             </Tab>

             <Tab title="macOS">
               <CodeGroup>
                 ```sh curl Command theme={null}
                 curl -O https://repo.anaconda.com/miniconda/<FILENAME>
                 ```

                 ```sh Apple Silicon Example theme={null}
                 curl -O https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-MacOSX-arm64.sh
                 ```

                 ```sh Intel Example theme={null}
                 curl -O https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-MacOSX-x86_64.sh
                 ```
               </CodeGroup>

               <Comments>
                 Replace \<FILENAME> with the installer filename you copied from the Anaconda Distribution archive.
               </Comments>
             </Tab>

             <Tab title="Linux">
               <CodeGroup>
                 ```sh curl Command theme={null}
                 curl -O https://repo.anaconda.com/miniconda/<FILENAME>
                 ```

                 ```sh wget Command theme={null}
                 wget https://repo.anaconda.com/miniconda/<FILENAME>
                 ```

                 ```sh Linux x86 theme={null}
                 curl -O https://repo.anaconda.com/miniconda/Miniconda3-py310_24.5.0-0-Linux-x86_64.sh
                 ```

                 ```sh wget Example theme={null}
                 wget https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-Linux-x86_64.sh
                 ```
               </CodeGroup>

               <Comments>
                 Replace \<FILENAME> with the installer filename you copied from the Anaconda Distribution archive.
               </Comments>
             </Tab>
           </Tabs>

       Once you have your installer file downloaded, continue with the install instructions linked below, skipping the download step:

       * [Windows install instructions](/getting-started/miniconda/install/windows-cli-install)
       * [macOS install instructions](/getting-started/miniconda/install/mac-cli-install)
       * [Linux install instructions](/getting-started/miniconda/install/linux-install)

           <Warning>
             You might not be able to use conda to update or install packages beyond what is included in the Miniconda version you've installed. This is because Miniconda provides a static bundle of packages from the time of release, but the repository continues to be updated over time. Older package versions might be removed or replaced, and the versions present in the repository might not be compatible with your operating system. For package lists for each version of Miniconda, see the [Miniconda release notes](/getting-started/miniconda/release-notes).
           </Warning>
  </Tab>
</Tabs>
