I cannot seem to find an uninstall script for the gcloud sdk.
I have already removed all the components (except for core
which you cannot remove) via gcloud components remove [ID]
I noticed that there is a folder google-cloud-sdk
located in my user folder, although this only has install scripts. I imagine there are other files or folders which should also be deleted.
Does anyone know of an uninstall script or all the files/folders to delete?
Thanks.
Run gcloud info
. This will tell you, among other things, the "Installation Root". You can just delete that folder and you're done. You can also use gcloud formatting to print just the installation root with gcloud info --format='value(installation.sdk_root)'
. This is helpful for automation.
If you want, you can also delete your configuration files. You can usually find them in ~/.config/gcloud
on MacOS and Linux, but a safer approach would be to use gcloud info --format='value(config.paths.global_config_dir)'
to provide the location.
The only other modifications gcloud makes at install time is to put lines sourcing completion.bash.inc
and paths.bash.inc
in your .bashrc
file (if you directed it to do so) and add the installation directory to PATH. These shouldn't have any negative impact but feel to manually remove them too.
Later Edit: Google has official uninstall instructions for Cloud SDK now. Be sure to check those instructions in case there are changes in the future.