Reputation: 23
Unable to download the image from bucket from the google cloud console. Is there any other way to download the same?
Upvotes: 2
Views: 676
Reputation: 862
There are two methods to this. Kindly follow the steps below:
Method 1 :-
Method 2 :- Use the gsutil cp command.
gsutil cp gs://BUCKET_NAME/OBJECT_NAME SAVE_TO_LOCATION
Where:
BUCKET_NAME
is the name of the bucket containing the object you are downloading.
OBJECT_NAME
is the name of object you are downloading.
SAVE_TO_LOCATION
is the local path where you are saving your object.
Upvotes: 3