> For the complete documentation index, see [llms.txt](https://antoinepinto.gitbook.io/easyenvi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://antoinepinto.gitbook.io/easyenvi/google-cloud-environment/google-cloud-initialisation.md).

# 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
