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

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

The `anaconda token` command group manages repository tokens used to access Anaconda premium channels. It ships as part of the `anaconda-auth` package and is registered as a top-level subcommand under the `anaconda` CLI.

If your organization has an Anaconda Business subscription with premium repository access, use these commands to install and manage the tokens that grant conda access to those channels. The typical workflow is:

1. `anaconda auth login` to authenticate.
2. `anaconda token install` to issue and store a repository token for your organization.
3. `anaconda token list` to verify the token is installed.

<Note>
  Commands that contact anaconda.com (such as `install`) require you to be logged in via `anaconda auth login`.
</Note>

## Subcommands

<GTable cols="20% 80%">
  <GHead>
    <GRow>
      <GTH>Command</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>[`install`](/docs/cli-reference/anaconda-auth/commands/token-install)</GCell>
      <GCell>Create and install a new repository token</GCell>
    </GRow>

    <GRow>
      <GCell>[`uninstall`](/docs/cli-reference/anaconda-auth/commands/token-uninstall)</GCell>
      <GCell>Uninstall a repository token for a specific organization</GCell>
    </GRow>

    <GRow>
      <GCell>[`list`](/docs/cli-reference/anaconda-auth/commands/token-list)</GCell>
      <GCell>List all installed repository tokens</GCell>
    </GRow>

    <GRow>
      <GCell>[`config`](/docs/cli-reference/anaconda-auth/commands/token-config)</GCell>
      <GCell>Configure conda default channels for premium repository access</GCell>
    </GRow>

    <GRow>
      <GCell>[`set`](/docs/cli-reference/anaconda-auth/commands/token-set)</GCell>
      <GCell>Install a token with control over which `.condarc` file is written</GCell>
    </GRow>

    <GRow>
      <GCell>[`remove`](/docs/cli-reference/anaconda-auth/commands/token-remove)</GCell>
      <GCell>Remove token and related data from keyring and conda configuration</GCell>
    </GRow>
  </GBody>
</GTable>

## Global options

<GTable cols="20% 80%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`--help`</GCell>
      <GCell>Show help message</GCell>
    </GRow>
  </GBody>
</GTable>
