1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Google Cloud SDKのセットアップ方法

Posted at

概要

GoogleCloudのcliツール(Google Cloud SDK)を使用するためのセットアップ方法になります。
AWS-Cliみたいなものです

手順

1,ファイルをダウンロードしてきます。

MacOSの方はこちら。
https://cloud.google.com/sdk/docs/quickstart-macos

他のOS(Windows、Linux)の場合はリンク先に飛んで、
左サイドバーのクイックスタートの箇所から選択してください。
スクリーンショット 2020-12-14 13.37.59.png

2,ダウンロード後のセットアップ

// ダウンロードしたら展開
$ tar -xzvf Downloads/ダウンロードしたファイル -C $HOME

// インストールする
$ sh $HOME/google-cloud-sdk/install.sh

※AttributeError: module 'importlib' has no attribute 'util'
pythonのバージョンを適切にすることで解消できます。
自分は3.7.6でいけました。

// 動作確認 ターミナルを再起動 or source ~/.bash_profile
$ gcloud version

これにて、bqコマンドなどの使用をする事ができるようになります。

引用・参考
https://apps-gcp.com/cloud-sdkinstall-commentary/#Python27

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?