> ## Documentation Index
> Fetch the complete documentation index at: https://botpress-pb-update-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

To get started, install the Botpress CLI globally on your machine. The CLI includes the Botpress SDK and other useful packages for developing with Botpress.

Run the following command in your terminal:

<CodeGroup>
  ```bash npm theme={null}
  npm install -g @botpress/cli
  ```

  ```bash pnpm theme={null}
  pnpm install -g @botpress/cli
  ```

  ```bash yarn theme={null}
  yarn add -g @botpress/cli
  ```
</CodeGroup>

<Note>All the examples in this section use `npm`, but feel free to use the package manager of your choice like `yarn` or `pnpm`.</Note>

You can check that your installation was successful by running the following command:

```bash theme={null}
bp --help
```
