---
title: Install Pulumi
url: /docs/iac/get-started/gcp/begin/
---
## Install Pulumi

Download and install Pulumi for your platform:

<!-- chooser: os -->

<!-- option: macos -->

```bash
$ brew install pulumi/tap/pulumi
```

<!-- /option -->

<!-- option: linux -->

```bash
$ curl -fsSL https://get.pulumi.com | sh
```

<!-- /option -->

<!-- option: windows -->

> **Note:** All Windows examples in this tutorial assume you are running in PowerShell.

```bat
> choco install pulumi
```

<!-- /option -->

<!-- /chooser -->

> **Note:** Other installation options [are available](/docs/install/).

Test your new installation by running the `pulumi version` command:

<!-- chooser: os -->

<!-- option: macos -->

```bash
$ pulumi version
v3.238.0
```

If this doesn't work, you may need to restart your terminal to ensure the directory containing
the `pulumi` command is on your `PATH`.

<!-- /option -->

<!-- option: linux -->

```bash
$ pulumi version
v3.238.0
```

If this doesn't work, you may need to restart your terminal to ensure the directory containing
the `pulumi` command is on your `PATH`.

<!-- /option -->

<!-- option: windows -->

```bat
> pulumi version
v3.238.0
```

If this doesn't work, you may need to restart your terminal to ensure the directory containing
the `pulumi.exe` command is on your `PATH`.

<!-- /option -->

<!-- /chooser -->

---
[← Previous step](/docs/iac/get-started/gcp/)
[Next: Configure access →](/docs/iac/get-started/gcp/configure/)


