De acordo com o site do Google , aqui estão os passos para instalar o gcloud
em sistemas baseados no Debian
Você pode precisar instalar curl
sudo apt-get install curl
Create an environment variable for the correct distribution
export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"
Add the Cloud SDK distribution URI as a package source
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee /etc/apt/sources.list.d/google-cloud-sdk.list
Import the Google Cloud public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
Update and install the Cloud SDK
sudo apt-get update && sudo apt-get install google-cloud-sdk
Run gcloud init to get started
gcloud init