From 4e2986929d3e91941599d7ecf56414384c7f04c5 Mon Sep 17 00:00:00 2001 From: bhandarivijay Date: Thu, 5 Mar 2026 09:05:11 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- notebooks/Download Data.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/Download Data.ipynb b/notebooks/Download Data.ipynb index fdadea7..842aaaf 100644 --- a/notebooks/Download Data.ipynb +++ b/notebooks/Download Data.ipynb @@ -44,11 +44,11 @@ "For example you can use\n", "\n", "```\n", - "gsutil ls gs://objectron/v1/records_shuffled\n", + "gcloud storage ls gs://objectron/v1/records_shuffled\n", "```\n", "to see the available classes in the dataset. Similarly, the easiest way to copy files to the local machine would be\n", "```\n", - "gsutil cp -r gs://objectron/v1/records_shuffled local_dataset_dir\n", + "gcloud storage cp --recursive gs://objectron/v1/records_shuffled local_dataset_dir\n", "```" ] },