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

<Accordion title="System requirements">
  Navigator supports the same operating systems as [Anaconda Distribution](/getting-started/anaconda/system-requirements). These include:

  * Windows 10 (v1809 or later) x86\_64
  * Windows 11 or later
  * macOS 10.14 or later, 64-bit
  * Ubuntu 18 or later/Centos7 or later, 64-bit

  For more information on Anaconda's operating system support, see [Anaconda's Platform support policy](/reference/policies-practices/platform-support).

  <Warning>
    Anaconda will discontinue support for new package releases on Windows 10 (effective June 30, 2026) and Windows 11 versions 23H2 and earlier (effective November 10, 2026). For more information, see [our blog on Updates to Anaconda's Windows Operating System Support](https://www.anaconda.com/blog/windows-operating-system-support-update).
  </Warning>

  The most current installation of Navigator also supports Python versions 3.10 or later. For more information, see [Anaconda's Python version support policy](/reference/policies-practices/python-version-support).
</Accordion>

<Accordion title="Using Navigator with a network firewall?">
  To use Navigator in <Tooltip tip="A mode where Navigator is connected to a network, usually the internet, so that it can download and install packages.">online mode</Tooltip>, you must be able to reach the following sites:

  * `https://repo.anaconda.com` for repositories and installers
  * `https://anaconda.org` (and its subdomains `https://conda.anaconda.org` and `https://pypi.anaconda.org`) for conda-forge and other <Tooltip tip="A location (URL or file path) in a repository where conda looks for packages.">channels</Tooltip> on anaconda.org
  * `https://anaconda.cloud` (Navigator versions 2.6.5 and older) for application tiles and learning and community cards
  * `https://anaconda.com` (Navigator versions 2.6.6 and later) for application tiles and learning and community cards

  If necessary, add these URLs to an allowlist in your network's firewall settings.

  To use Navigator in offline mode, see [Enabling offline mode](/tools/anaconda-navigator/tutorials/offline-mode).
</Accordion>

## Installing Navigator

Navigator is automatically installed when you install [Anaconda Distribution](/getting-started/anaconda/install/overview).

If you have [Miniconda](/getting-started/miniconda/main), install Navigator manually into your base environment by opening [Anaconda Prompt](/reference/glossary#anaconda-prompt) (Terminal on macOS/Linux) and running the following command:

```sh theme={null}
conda install --name base anaconda-navigator
```

View the packages in your base environment to confirm Navigator is installed:

```sh theme={null}
conda list --name base anaconda-navigator
```

Open Navigator with the following command:

```sh theme={null}
anaconda-navigator
```

If you'd rather not use the command line to open Navigator, see [Starting Navigator](/tools/anaconda-navigator/getting-started#starting-navigator) for system-specific instructions.

<Note>
  Having trouble installing or launching Navigator? See our [Navigator Troubleshooting topics](/reference/troubleshooting#navigator-issues).
</Note>

<CardGroup cols={2}>
  <Card title="Getting started with Navigator" href="/tools/anaconda-navigator/getting-started" />

  <Card title="Understanding Navigator" href="/tools/anaconda-navigator/overview" />

  <Card title="Connecting Navigator to Anaconda.com" href="/tools/anaconda-navigator/tutorials/connecting-to-cloud" />

  <Card title="Connecting Navigator to other repositories" href="/tools/anaconda-navigator/tutorials/connecting-to-other-repos" />
</CardGroup>
