0

I want to fuse a gcs bucket with a local directory, for which I'm doing the following:

gcsfuse gs://stereo-train ~/Documents/stereo-train

However, I'm getting the error:

Unknown bucket "gs://stereo-train"

The stereo train bucket does exist on google cloud. How do I fix this?

Andrew Gaul
  • 2,296
  • 1
  • 12
  • 19
zendevil
  • 899
  • 4
  • 13
  • 26

1 Answers1

1

As mentioned by the docs, when you want to mount the bucket using gcsfuse you only type the name of the bucket without adding "gs://", i.e., you may want to mount the bucket using:

gcsfuse stereo-train ~/Documents/stereo-train

Puteri
  • 3,348
  • 4
  • 12
  • 27
Hi_Esc
  • 158
  • 10