> ## 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 repo download

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 repo download [OPTIONS]
```

## Description

Downloads artifacts from a channel. The primary use documented here is downloading a notebook by name; the file is written to the current directory (or the path given by `--filename`).

## Options

<GTable cols="25% 25% 50%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Default</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`--channel <CHANNEL>`</GCell>

      <GCell />

      <GCell>Channel name</GCell>
    </GRow>

    <GRow>
      <GCell>`--notebook <NOTEBOOK>`</GCell>

      <GCell />

      <GCell>Notebook name to download</GCell>
    </GRow>

    <GRow>
      <GCell>`--filename <FILE>`</GCell>

      <GCell />

      <GCell>Output filename</GCell>
    </GRow>

    <GRow>
      <GCell>`-h, --help`</GCell>

      <GCell />

      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>

## Examples

**Download a notebook to the current directory**

```bash theme={null}
anaconda repo download --channel my-channel --notebook my-analysis
```

**Download with a specific output filename**

```bash theme={null}
anaconda repo download --channel my-channel --notebook my-analysis --filename report.ipynb
```
