I've installed Cloud SDK on my windows 10 machine and I'm able to run commands like "gcloud", "gsutil" and "bq" on my command prompt. However, when I run "gsutil" or "bq" on Bash, this is the error I'm getting.
$ bq
bash: bq: command not found
Then I added this location to PATH C:\Users\User\AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin
, and afterwards I seem to be able to call gsutil
and bq
using gsutil.cmd
and bq.cmd
. But of course, I'd prefer calling bq / gsutil directly.
Has anyone has this problem before? Thank you!