> ## Documentation Index
> Fetch the complete documentation index at: https://docs.decibel.trade/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install the Decibel CLI globally

## Install the CLI

```bash npm theme={null}
npm install -g @decibeltrade/cli
```

```bash yarn theme={null}
yarn global add @decibeltrade/cli
```

```bash pnpm theme={null}
pnpm add -g @decibeltrade/cli
```

<Note>
  Requires Node.js 22 or later.
</Note>

## Run without installing

You can also run the CLI directly with `npx` without a global install:

```bash theme={null}
npx -y @decibeltrade/cli markets ls
```

## Verify installation

```bash theme={null}
decibel-cli --version
decibel-cli --help
```

You should see the version number and a list of available commands:

```
Usage: decibel-cli [options] [command]

Command-line interface for trading on Decibel DEX

Options:
  -V, --version          output the version number
  --network <network>    Network to use (mainnet, testnet, local)
  -h, --help             display help for command

Commands:
  account                Manage trading accounts
  markets                View market information
  trade                  Trading commands
  help [command]         display help for command
```

## Next steps

Set up your accounts and environment variables in [Configuration](/cli/configuration).
