Skip to content

Commit b02baaa

Browse files
chore: Migrate gsutil usage to gcloud storage (#2412)
1 parent 63c490f commit b02baaa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

site/en/r1/tutorials/sequences/recurrent_quickdraw.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Then use the following command to check that your gsutil installation works and
8282
that you can access the data bucket:
8383

8484
```shell
85-
gsutil ls -r "gs://quickdraw_dataset/full/simplified/*"
85+
gcloud storage ls --recursive "gs://quickdraw_dataset/full/simplified/*"
8686
```
8787

8888
which will output a long list of files like the following:
@@ -100,7 +100,7 @@ Then create a folder and download the dataset there.
100100
```shell
101101
mkdir rnn_tutorial_data
102102
cd rnn_tutorial_data
103-
gsutil -m cp "gs://quickdraw_dataset/full/simplified/*" .
103+
gcloud storage cp "gs://quickdraw_dataset/full/simplified/*" .
104104
```
105105

106106
This download will take a while and download a bit more than 23GB of data.

0 commit comments

Comments
 (0)