Skip to content

Commit c289f70

Browse files
docs: update gsutil commands to gcloud commands (#1876)
Co-authored-by: Tim Sweña (Swast) <[email protected]>
1 parent 7c9b816 commit c289f70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notebooks/generative_ai/bq_dataframes_llm_code_generation.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@
10931093
"import uuid\n",
10941094
"BUCKET_ID = \"code-samples-\" + str(uuid.uuid1())\n",
10951095
"\n",
1096-
"!gsutil mb gs://{BUCKET_ID}"
1096+
"!gcloud storage buckets create gs://{BUCKET_ID}"
10971097
]
10981098
},
10991099
{
@@ -1272,7 +1272,7 @@
12721272
"outputs": [],
12731273
"source": [
12741274
"# # Delete the Google Cloud Storage bucket and files\n",
1275-
"# ! gsutil rm -r gs://{BUCKET_ID}\n",
1275+
"# ! gcloud storage rm gs://{BUCKET_ID} --recursive\n",
12761276
"# print(f\"Deleted bucket '{BUCKET_ID}'.\")"
12771277
]
12781278
}

0 commit comments

Comments
 (0)