作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在使用 Google Colab 笔记本时,我必须导出 Google 身份验证凭据。
export GOOGLE_APPLICATION_CREDENTIALS='[PATH_TO_CREDS.JSON]'
DefaultCredentialsError: Could not automatically determine credentials. Please set GOOGLE_APPLICATION_CREDENTIALS or explicitly create credential and re-run the application
最佳答案
应该有一种方法可以使本地文件工作,但我发现挂载 Google Drive 很方便并且有效。我将文件放在 Google Drive 的 Colab Notebooks 文件夹中的临时文件夹中,我保存了所有 Colab 文件。
from google.colab import drive
drive.mount('/content/gdrive')
#ensure the file is accessible
!ls /content/gdrive/'My Drive'/'Colab Notebooks'/temp
import os
os.environ["GOOGLE_APPLICATION_CREDENTIALS"]="/content/gdrive/My Drive/Colab Notebooks/temp/b08d5871a151.json"
#ensure the path is set correctly
!echo $GOOGLE_APPLICATION_CREDENTIALS
关于python - 使用 Python 时如何在 Google Colab 中引用文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55106556/
我是一名优秀的程序员,十分优秀!