Last active
April 15, 2020 18:33
-
-
Save thiagosouza/84ae8efef81b9b2c6b5d5d34f852ff8a to your computer and use it in GitHub Desktop.
GCloud Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#GCloud | |
#install | |
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list | |
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - | |
sudo apt-get update && sudo apt-get install google-cloud-sdk | |
#references | |
#https://cloud.google.com/sdk/docs/quickstart-linux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment