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

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

## Description

Creates a new channel. You can specify the channel in two ways:

* **Simple name with `--namespace`**: `anaconda channel create my-channel --namespace my-org`
* **Combined format**: `anaconda channel create my-org/my-channel`

Both approaches are equivalent — use whichever you prefer.

If neither `--private` nor `--public` is specified, you are prompted to select the privacy level interactively.

## Arguments

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

  <GBody>
    <GRow>
      <GCell>`<NAME>`</GCell>
      <GCell>Channel name to create (or `namespace/channel` format)</GCell>
    </GRow>
  </GBody>
</GTable>

## Options

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

  <GBody>
    <GRow>
      <GCell>`-n, --namespace <TEXT>`</GCell>
      <GCell>Namespace to create the channel under</GCell>
    </GRow>

    <GRow>
      <GCell>`--private`</GCell>
      <GCell>Create as a private channel</GCell>
    </GRow>

    <GRow>
      <GCell>`--public`</GCell>
      <GCell>Create as a public channel</GCell>
    </GRow>

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

## Examples

**Create a private channel**

```bash theme={null}
anaconda channel create my-channel --private
```

**Create a channel under a specific namespace**

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

**Create a channel using namespace/channel format**

```bash theme={null}
anaconda channel create my-org/my-channel --private
```
