■やりたいこと
Google Colaboratory で Google スプレッドシートの情報を読み込み処理をしたい
■問題
2020年3月~4月時くらいまではエラーが発生していませんでしたが、直近でエラーが発生しています。
以下のコード部分でエラーになり、困っています。
Python
1from google.colab import drive 2drive.mount('/content/drive') 3 4!pip install --upgrade --quiet gspread 5import google.colab 6from google.colab import files 7from google.colab import drive 8from google.colab import auth 9from oauth2client.client import GoogleCredentials 10import gspread 11 12auth.authenticate_user() 13gc = gspread.authorize(GoogleCredentials.get_application_default())
エラー内容
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True). --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-31-1b5644663094> in <module>() 10 import gspread 11 ---> 12 auth.authenticate_user() 13 gc = gspread.authorize(GoogleCredentials.get_application_default()) 4 frames /usr/local/lib/python3.6/dist-packages/google/auth/_default.py in _load_credentials_from_file(filename) 110 111 try: --> 112 credentials = credentials.Credentials.from_authorized_user_info(info) 113 except ValueError as caught_exc: 114 msg = "Failed to load authorized user credentials from {}".format(filename) AttributeError: module 'google.auth._cloud_sdk' has no attribute 'load_authorized_user_credentials'
あなたの回答
tips
プレビュー