LoginSignup
1
1

More than 5 years have passed since last update.

install google-cloud-sdk

Posted at

reference

code

cd ~
_BASE_URL="https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/"
_FILE_NAME="google-cloud-sdk-158.0.0-darwin-x86_64.tar.gz"
curl -o $_FILE_NAME $_BASE_URL$_FILE_NAME
tar zxfv $_FILE_NAME

export CLOUDSDK_PYTHON="$(which python2.7)"
./google-cloud-sdk/install.sh
To install or remove components at your current SDK version [158.0.0], run:
  $ gcloud components install COMPONENT_ID
  $ gcloud components remove COMPONENT_ID

To update your SDK installation to the latest version [168.0.0], run:
  $ gcloud components update
# google-cloud-sdk
export CLOUDSDK_PYTHON="$(which python2.7)"
# modified path and completion
# The next line updates PATH for the Google Cloud SDK.
if [ -f "$HOME/google-cloud-sdk/path.zsh.inc" ]; then
    source "$HOME/google-cloud-sdk/path.zsh.inc"
fi

# The next line enables shell command completion for gcloud.
if [ -f "$HOME/google-cloud-sdk/completion.zsh.inc" ]; then
    source "$HOME/google-cloud-sdk/completion.zsh.inc"
fi
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1