---
title: "Deploy Anyscale on Google Compute Engine (GCE)"
description: "Set up an Anyscale cloud on Google Compute Engine (GCE) using the Anyscale CLI and Google Cloud credentials."
---

# Deploy Anyscale on Google Compute Engine (GCE)

## 1\. Install Anyscale's python client package

```bash
pip install -U "anyscale[gcp]"
anyscale login # authenticate
```

## 2\. Configure your Cloud Provider account

-   Prepare a Google Cloud project for Anyscale to use.
-   Follow the Google Cloud [instructions](https://cloud.google.com/sdk/docs/install) on installing gcloud CLI if you haven't.

:::note
Before you continue to the next step, make sure your Google Cloud credentials have the following permissions ([learn more](/clouds/gcp/configure.md)):

-   Has owner role on the Google Cloud project you want Anyscale to use
:::

## 3\. Create your Anyscale Cloud

Run the following command to create an Anyscale Cloud with the default configuration.

```bash
anyscale cloud setup
```

If you wish to use Terraform or customize other settings like VPC, follow [these instructions](/clouds/gcp/configure.md) in the documentation.

## 4\. Verify your Anyscale Cloud

Run the following command to verify that your newly created Anyscale Cloud is fully functional and ready to use.

Cloud Name `my-gcp-cloud`

```bash
anyscale cloud verify --name <your_cloud_name>
```