diff --git a/README.md b/README.md index 7ab66bc..b38975d 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ to access Vertex AI to run jobs. ```bash export 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: diff --git a/xmanager/cloud/auth.py b/xmanager/cloud/auth.py index 595c8ef..b12b4e6 100644 --- a/xmanager/cloud/auth.py +++ b/xmanager/cloud/auth.py @@ -175,5 +175,5 @@ def get_bucket() -> str: '`export GOOGLE_CLOUD_BUCKET_NAME=`, ' 'replacing 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`' )