diff --git a/README.md b/README.md index 9997443f..6e963f95 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ instructions below. BUCKET_NAME="your-bucket-name" REGION="us-central1" gcloud auth login - gsutil mb -l $REGION gs://$BUCKET_NAME + gcloud storage buckets create gs://$BUCKET_NAME --location=$REGION ``` (optional for local docker setup) `shell sudo dockerd` diff --git a/g3doc/tutorials/google_cloud_project_setup_instructions.ipynb b/g3doc/tutorials/google_cloud_project_setup_instructions.ipynb index 0443f173..68e56646 100644 --- a/g3doc/tutorials/google_cloud_project_setup_instructions.ipynb +++ b/g3doc/tutorials/google_cloud_project_setup_instructions.ipynb @@ -253,7 +253,7 @@ "BUCKET_NAME = 'YOUR_BUCKET_NAME'\n", "\n", "GCS_BUCKET = f'gs://{BUCKET_NAME}'\n", - "!gsutil mb -p $GCP_PROJECT_ID $GCS_BUCKET" + "!gcloud storage buckets create --project $GCP_PROJECT_ID $GCS_BUCKET" ] }, { diff --git a/g3doc/tutorials/hp_tuning_wide_and_deep_model.ipynb b/g3doc/tutorials/hp_tuning_wide_and_deep_model.ipynb index 6dec18b1..fced15c5 100644 --- a/g3doc/tutorials/hp_tuning_wide_and_deep_model.ipynb +++ b/g3doc/tutorials/hp_tuning_wide_and_deep_model.ipynb @@ -263,7 +263,7 @@ "!kaggle competitions download -c caiis-dogfood-day-2020\n", "\n", "# Copy the training file to your bucket\n", - "!gsutil cp ./caiis-dogfood-day-2020/train.csv $GCS_BASE_PATH/caiis-dogfood-day-2020/train.csv\n", + "!gcloud storage cp ./caiis-dogfood-day-2020/train.csv $GCS_BASE_PATH/caiis-dogfood-day-2020/train.csv\n", "```" ] }, diff --git a/src/python/tensorflow_cloud/tuner/cloud_fit_readme.md b/src/python/tensorflow_cloud/tuner/cloud_fit_readme.md index 4362d44b..ae2434d8 100644 --- a/src/python/tensorflow_cloud/tuner/cloud_fit_readme.md +++ b/src/python/tensorflow_cloud/tuner/cloud_fit_readme.md @@ -127,7 +127,7 @@ you can skip the setup and authentication steps and start from step 8. ```shell export BUCKET_NAME="your-bucket-name" export REGION="us-central1" - gsutil mb -l $REGION gs://$BUCKET_NAME + gcloud storage buckets create gs://$BUCKET_NAME --location=$REGION ``` 1. Build and install latest release @@ -178,4 +178,3 @@ you can skip the setup and authentication steps and start from step 8. ## License [Apache License 2.0](https://github.com/tensorflow/cloud/blob/master/LICENSE) -