1

我已经分叉了 python - doc - 示例 https://github.com/aliwo/python-docs-samples

我正在尝试学习下面的 .py 文件。python-docs-samples\video\cloud-client\labels\labels.py

出现错误信息:

google.auth.exceptions.DefaultCredentialsError: Could not automatically     determine credentials. Please set GOOGLE_APPLICATION_CREDENTIALS or
explicitly create credential and re-run the application. For more
information, please see
https://developers.google.com/accounts/docs/application-default-credentials.

我检查了所有谷歌客户端网站,但找不到放置我的服务帐户的 key.json 文件的位置。如何解决此错误?

4

2 回答 2

2

在此处输入图像描述

控制面板->系统环境变量->这样设置

于 2017-07-03T03:12:52.713 回答
2

如果您在本地计算机上运行代码,您应该能够将 key.json 文件放在任何地方,并按照此页面(页面底部)上的“使用应用程序默认凭据进行身份验证”步骤进行操作。

具体来说:

$ export GOOGLE_APPLICATION_CREDENTIALS=<path_to_service_account_file>
于 2017-06-29T19:38:07.157 回答