ERROR: (gcloud.compute.machine-images.describe) You do not currently have an active account selected.

【不具合内容】

Pythonでリストを順にprint文で出力している時に発生。

stations = ["東京", "品川", "新横浜", "小田原", "熱海"]
print(stations[0],stations[1],stations[2],stations[3],stations[4],stations[5])
IndexError                                Traceback (most recent call last)
<ipython-input-21-82134eb748e5> in <cell line: 1>()
----> 1 print(stations[0],stations[1],stations[2],stations[3],stations[4],stations[5])

IndexError: list index out of range

【原因】

print文の「)」閉じカッコがない。

print文以外でも対になるカッコが抜けていたりすると発生する。

【解決方法】

「)」閉じカッコを追記する。

stations = ["東京", "品川", "新横浜", "小田原", "熱海"]
print(stations[1])

以下のコマンドを実行する。

gcloud auth login

「Go to the following link in your browser:」に続いてサインイン用のリンクが出力されるためクリックして認証コードをコピーする。

gcloudサインよう認証コード

上記画面の「Copy」ボタンをクリックして認証コードをコピーした後、gcloudコンソールに戻り「Enter authorization code:」に続いてコピーした認証コードを貼り付けて入力する。

コメントを残す

* 印は必須項目です。メールアドレスは公開されません。

次のHTMLタグと属性を使用することができます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください