I need to add the Google Cloud SDK in the PATH
. So I need the path to where is installed. Is there any gcloud ...
command which gives me this information?
If not I have to go through the symlink in which gcloud
, etc.
Any cleaner solution for this problem?
Download and Install Google Cloud SDK On Windows: run the command . \google-cloud-sdk\install.
The first thing to do after successful installation is open your command line and type “gcloud” to check whether Cloud SDK has installed perfectly. Run “gcloud init”, it opens up a new browser window and asks to login into your google cloud account.
Usually, this is C:\WINDOWS\system32; . If you uninstalled the gcloud CLI, you must reboot your system before installing the gcloud CLI again. If unzipping fails, run the installer as an administrator.
The following command will give you the information you're looking for:
$ gcloud info --format="value(installation.sdk_root)" /path/to/google-cloud-sdk/
You need to append /bin
.
You also have lots of other paths available: config.paths.global_config_dir
, installation.sdk_root
, and so on. Look at the output of gcloud info --format=json
for all available properties to query.
I used:
dirname $(which gcloud)
And worked like a charm
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With