google colaboratoryでspreadsheetと連携しようとしているのですが、importする時点でエラーが起こってしまったので解決策が分かる方、ご助力ください。
コード
import gspread from oauth2client.service_account import ServiseAccountCredentials import json import pandas as pd
エラー
ImportError Traceback (most recent call last) <ipython-input-5-9c75a039cca3> in <module>() 1 import gspread ----> 2 from oauth2client.service_account import ServiseAccountCredentials 3 import json 4 import pandas as pd ImportError: cannot import name 'ServiseAccountCredentials' --------------------------------------------------------------------------- NOTE: If your import is failing due to a missing package, you can manually install dependencies using either !pip or !apt. To view examples of installing some common dependencies, click the "Open Examples" button below. ---------------------------------------------------------------------------
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/16 04:47
2021/02/16 07:52