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

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

## Description

Interactive wizard to configure conda to use Anaconda Platform or Package Security Manager (On-prem). It helps you add the correct channel URLs and authentication to your conda configuration (user, system, or env `.condarc`, or a specific file). Use `--restore` to restore `.condarc` from a backup created by a previous wizard run.

## Options

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

  <GBody>
    <GRow>
      <GCell>`--system`</GCell>

      <GCell />

      <GCell>Write to the system `.condarc` file</GCell>
    </GRow>

    <GRow>
      <GCell>`--env`</GCell>

      <GCell />

      <GCell>Write to the active conda environment `.condarc`</GCell>
    </GRow>

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

      <GCell />

      <GCell>Write to the given file</GCell>
    </GRow>

    <GRow>
      <GCell>`--restore`</GCell>

      <GCell />

      <GCell>Restore `.condarc` from backup</GCell>
    </GRow>

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

      <GCell />

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

## Examples

**Run the wizard (uses user `.condarc` by default)**

```bash theme={null}
anaconda repo wizard
```

**Write configuration to a specific file**

```bash theme={null}
anaconda repo wizard --file /path/to/.condarc
```

**Restore from backup**

```bash theme={null}
anaconda repo wizard --restore
```
