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

# Getting Started

> Get started with the `pcb` CLI

## Install from a package manager

*Package manager installation coming soon.*

## Install from script

Install the `pcb` shim. It downloads and runs the right `pcbc` toolchain for each project.

<CodeGroup>
  ```bash bash theme={null}
  curl -fsSL https://raw.githubusercontent.com/diodeinc/pcb/main/install.sh | bash
  ```

  ```powershell powershell theme={null}
  powershell -ExecutionPolicy Bypass -c "irm https://raw.githubusercontent.com/diodeinc/pcb/main/install.ps1 | iex"
  ```
</CodeGroup>

The installer adds `pcb` to your user `PATH` when needed.

<Accordion title="Install from source.">
  Clone the [repo](https://github.com/diodeinc/pcb) and build locally.

  ```bash theme={null}
  # Clone the repo
  git clone https://github.com/diodeinc/pcb

  # Move into source folder
  cd pcb

  # Build locally
  cargo build -p pcb -p pcbc
  ```
</Accordion>
