# Google Cloud initialisation

For initialization on Google Cloud, you need to have an account on Google Cloud Platform and create access identifiers.&#x20;

* [How can I create an account on Google Cloud Platform? ](https://www.youtube.com/watch?v=m5hwU0jD0qc)
* [How to create access identifiers on Google CLoud Platform ?](https://developers.google.com/workspace/guides/create-credentials)

Then, initialise EasyEnvironment as follows:

```python
from easyenvi import EasyEnvironment

envi = EasyEnvironment(
  gcloud_project_id="your-project-id",
  gcloud_credential_path="path/to/credentials.json",
  GCS_path="gs://your-bucket-name/" # Optional
                  )
```

* **gcloud\_project\_id -&#x20;*****str***\
  GCP project identifier
* **gcloud\_credential\_path -&#x20;*****str***\
  path to a .json access credentials
* **GCS\_path -&#x20;*****str***\
  path to a GCS bucket from which to interact


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://antoinepinto.gitbook.io/easyenvi/google-cloud-environment/google-cloud-initialisation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
