gpt4 book ai didi

python - 使用 Python 时如何在 Google Colab 中引用文件?

转载 作者:行者123 更新时间:2023-12-04 12:41:29 28 4
gpt4 key购买 nike

在使用 Google Colab 笔记本时,我必须导出 Google 身份验证凭据。

export GOOGLE_APPLICATION_CREDENTIALS='[PATH_TO_CREDS.JSON]'

当我引用像“/Users/user/file”这样的本地文件时,找不到它并出现如下错误。

DefaultCredentialsError: Could not automatically determine credentials. Please set GOOGLE_APPLICATION_CREDENTIALS or explicitly create credential and re-run the application



我如何使路径工作,以便 colab 可以选择它?

最佳答案

应该有一种方法可以使本地文件工作,但我发现挂载 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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com