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

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

## Description

Removes the binstar token and related data from the keyring and reverts channel configuration in the targeted conda configuration file.

**Side effects:** Deletes token from keyring; modifies conda configuration file.

## Options

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

  <GBody>
    <GRow>
      <GCell>`-f, --file <PATH>`</GCell>

      <GCell />

      <GCell>Remove from the specified `.condarc` file</GCell>
    </GRow>

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

      <GCell />

      <GCell>Remove from the active conda environment's `.condarc`. If no environment is active, uses `~/.condarc`.</GCell>
    </GRow>

    <GRow>
      <GCell>`-s, --system`</GCell>
      <GCell>`--system`</GCell>
      <GCell>Remove from the system `.condarc`</GCell>
    </GRow>

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

      <GCell />

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

## Examples

**Remove token configuration**

```bash theme={null}
anaconda token remove
```

**Remove from the active environment's config**

```bash theme={null}
anaconda token remove --env
```

**Remove from a specific file**

```bash theme={null}
anaconda token remove --file ~/.condarc
```
