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

# Browsing environments

export const DefinitionDescription = ({children}) => <dd className="definition-description">{children}</dd>;

export const DefinitionTerm = ({children}) => <dt className="definition-term">{children}</dt>;

export const DefinitionList = ({children}) => <dl className="definition-list">{children}</dl>;

Anaconda.org hosts a curated collection of conda environments built by Anaconda for common use cases. You can browse and install these environments with a single command. Browsing environments does not require an account.

## Searching for environments

Search for environments by name, description, included packages, or tag using the search bar.

<Frame>
  <img src="https://mintcdn.com/anaconda-29683c67/rf1RkXX3Bnbao_RJ/images/org_environment_search.png?fit=max&auto=format&n=rf1RkXX3Bnbao_RJ&q=85&s=b5940880f2adb26686218ec49a1221cf" alt="The environment search page on Anaconda.org" width="1922" height="965" data-path="images/org_environment_search.png" />
</Frame>

Select the <Icon icon="filter" /> filter icon to open the **All Filters** menu. From here, you can filter your search results using the following options:

<DefinitionList>
  <DefinitionTerm>
    Source
  </DefinitionTerm>

  <DefinitionDescription>
    Filter for environments curated by Anaconda or created by the community.

    <Note>
      Community-created environments are coming soon.
    </Note>
  </DefinitionDescription>

  <DefinitionTerm>
    Tag
  </DefinitionTerm>

  <DefinitionDescription>
    The tags associated with environments, such as `Deep Learning`, `Data Science`, `Finance`, or `Starter`.
  </DefinitionDescription>

  <DefinitionTerm>
    Platform
  </DefinitionTerm>

  <DefinitionDescription>
    The platform or system architecture the environment supports (for example, `linux-64`, `osx-arm64`, `win-64`).
  </DefinitionDescription>
</DefinitionList>

## Viewing environment details

Select an environment card to view its details.

<Frame>
  <img src="https://mintcdn.com/anaconda-29683c67/rf1RkXX3Bnbao_RJ/images/org_environment_details.png?fit=max&auto=format&n=rf1RkXX3Bnbao_RJ&q=85&s=7db74b9edaa0a886154b48dd71fdf6ca" alt="An environment details page on Anaconda.org" width="1943" height="1175" data-path="images/org_environment_details.png" />
</Frame>

<Steps>
  <Step title="Environment introduction">
    This section contains:

    * Breadcrumbs linking back to the environment's organization (organization / environment). Select the organization to [view its channel homepage](/docs/anaconda-org/searching-packages#viewing-channel-information).
    * The name of the environment.
    * A badge describing that the environment is <Tooltip tip="Maintained and tested by Anaconda. These environments receive priority support. Anaconda Terms of Service apply.">Anaconda Curated</Tooltip>.
    * A short environment description.
  </Step>

  <Step title="Installation">
    Commands to install the environment with conda. Click <Icon icon="arrow-down-to-line" iconType="sharp-solid" /> **Download environment.yml** to download the environment's `.yml` file to your computer.

    <Tip>
      The downloaded `environment.yml` file is saved to your Downloads folder. To use the install command as-is, either move the file to your current working directory or specify the full path to the file:

      <Tabs>
        <Tab title="Windows">
          ```sh theme={null}
          conda env create -f %USERPROFILE%\Downloads\environment.yml
          ```
        </Tab>

        <Tab title="macOS/Linux">
          ```sh theme={null}
          conda env create -f ~/Downloads/environment.yml
          ```
        </Tab>
      </Tabs>
    </Tip>

    <Note>
      Installation instructions for Anaconda Desktop are coming soon!
    </Note>
  </Step>

  <Step title="Packages">
    The full list of packages included in the environment, with version specifications as necessary.
  </Step>

  <Step title="About">
    General information about the selected environment, including the date and time when the environment was last updated, whether or not the environment contains a lockfile, supported (and unsupported) platforms and architectures, channels the environment uses, and tags associated with the environment.
  </Step>
</Steps>
