たのしい工学

プログラミングを学んで、モノをつくりたいひと、効率的に仕事をしたい人のための硬派なブログになりました

[gcloud zsh path] gcloudコマンドをzshで利用

   

.zshrcを下記のように編集

# The next line updates PATH for the Google Cloud SDK.
if [ -f '/your path to google-cloud-sdk/google-cloud-sdk/path.zsh.inc' ]; then . '/your path to google-cloud-sdk/google-cloud-sdk/path.zsh.inc' fi
# The next line enables shell command completion for gcloud.
if [ -f '/your path to google-cloud-sdk/google-cloud-sdk/completion.zsh.inc' ]; then . '/your path to google-cloud-sdk/google-cloud-sdk/completion.zsh.inc' fi

"your path to google-cloud-sdk"をgoogle-cloud-sdkをインストールしたご自身のパスに設定してください。

おまけ

gcloudコマンドをローカルのマシンで利用するにはgcloud-sdkのインストールが必要です。方法はこちらを参照。
https://cloud.google.com/sdk/docs/install?hl=JA#linux

以上

 - GCP ,