I am having trouble trying to authenticate Google SDK using cygwin

bashcygwin;

I am trying to install SDK using Cygwin as instructed here https://developers.google.com/cloud/sdk/#Quick_Start

after Cygwin is installed I follow the guide and then try to authenticate using the gcloud auth login command, but get the following returned and do not know how to remedy.

> $ gcloud auth login
> -bash: gcloud: command not found

sorry I am not that technical, so I am sorry this is fairly basic, but I have tried searching and can't find a solution, so thanks in anticipation for any help

Best Answer

The command may not be in the $PATHso you need to use the path to the command. You can run a command from the current folder with./ in front:

./gcloud auth login
Related Question