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

# anaconda channel list

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>;

## Usage

```bash theme={null}
anaconda channel list [OPTIONS]
```

## Description

Lists all channels for the current user. By default, displays channels from both anaconda.com (private repository channels) and anaconda.org (public channels). Use `--source` to filter by source.

The list output shows a table containing namespace, channel name, privacy setting, description, artifact count, and download count information.

## Options

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`-n, --namespace <TEXT>`</GCell>
      <GCell>Filter to a specific namespace</GCell>
    </GRow>

    <GRow>
      <GCell>`--source <SOURCE>`</GCell>
      <GCell>Which channels to list: `repo` (anaconda.com), `org` (anaconda.org owners), or `all` (default)</GCell>
    </GRow>

    <GRow>
      <GCell>`-h, --help`</GCell>
      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>

## Examples

**List all channels**

```bash theme={null}
anaconda channel list
```

**List only anaconda.com repository channels**

```bash theme={null}
anaconda channel list --source repo
```

**List channels for a specific namespace**

```bash theme={null}
anaconda channel list --namespace my-org
```
