Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ to access Vertex AI to run jobs.

```bash
export GOOGLE_CLOUD_BUCKET_NAME=<GOOGLE_CLOUD_BUCKET_NAME>
gsutil mb -l us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME
gcloud storage buckets create --location=us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME
```

Add `GOOGLE_CLOUD_BUCKET_NAME` to the environment variables or your .bashrc:
Expand Down
2 changes: 1 addition & 1 deletion xmanager/cloud/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,5 +175,5 @@ def get_bucket() -> str:
'`export GOOGLE_CLOUD_BUCKET_NAME=<bucket-name>`, '
'replacing <bucket-name> with a Google Cloud Storage bucket. '
'You can create a bucket with '
'`gsutil mb -l us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME`'
'`gcloud storage buckets create --location=us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME`'
)