From 760e2eaea6d2e9ecb792976c468d321caf86b5b1 Mon Sep 17 00:00:00 2001 From: Alicia Williams Date: Mon, 30 Jun 2025 15:03:42 -0700 Subject: [PATCH] Update gsutil commands to gcloud commands --- .../generative_ai/bq_dataframes_llm_code_generation.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/generative_ai/bq_dataframes_llm_code_generation.ipynb b/notebooks/generative_ai/bq_dataframes_llm_code_generation.ipynb index 68e10cb5ed..4f1329129e 100644 --- a/notebooks/generative_ai/bq_dataframes_llm_code_generation.ipynb +++ b/notebooks/generative_ai/bq_dataframes_llm_code_generation.ipynb @@ -1093,7 +1093,7 @@ "import uuid\n", "BUCKET_ID = \"code-samples-\" + str(uuid.uuid1())\n", "\n", - "!gsutil mb gs://{BUCKET_ID}" + "!gcloud storage buckets create gs://{BUCKET_ID}" ] }, { @@ -1272,7 +1272,7 @@ "outputs": [], "source": [ "# # Delete the Google Cloud Storage bucket and files\n", - "# ! gsutil rm -r gs://{BUCKET_ID}\n", + "# ! gcloud storage rm gs://{BUCKET_ID} --recursive\n", "# print(f\"Deleted bucket '{BUCKET_ID}'.\")" ] }