我正在尝试设置一个新的 Colaboratory 笔记本来分析我们在 BigQuery 中的数据。在示例文档之后,我的第一个代码片段如下:
project_id = '<redacted>'
from google.colab import auth
auth.authenticate_user()
当我运行它时,我收到以下警告,重复两次:
WARNING:google.auth._default:No project ID could be determined from the credentials
at GOOGLE_APPLICATION_CREDENTIALS Consider setting the GOOGLE_CLOUD_PROJECT
environment variable
尝试通过设置项目 IDos.environ
不起作用。
每次使用 pandas 执行 SQL 语句时,我也会收到此错误,即使我提供了它,á la:
pd.io.gbq.read_gbq(sql, project_id=project_id, verbose=False, dialect='standard')