gpt4 book ai didi

python - google.auth.exceptions.DefaultCredentialsError - 不是有效的 json 文件

转载 作者:行者123 更新时间:2023-11-28 19:05:39 30 4
gpt4 key购买 nike

我正在尝试使用 goole vision api,但我无法在不出现以下错误的情况下运行我的 python 脚本:

google.auth.exceptions.DefaultCredentialsError: ('File /root/GoogleCloudStaff/apikey.json is not a valid json file.', ValueError('Invalid control character at: line 5 column 37 (char 172)',))

我的 python 脚本:

import io
from google.cloud import vision

vision_client = vision.Client()
#file_name = "/var/www/FlaskApp/FlaskApp/static/"#'375px-Guido_van_Rossum_OSCON_2006_cropped.png'

file_name = '1200px-Guido_van_Rossum_OSCON_2006.jpg'

#file_name = "/var/www/FlaskApp/FlaskApp/static/cyou_pic_folders/cyou_folder_2017_11_16_10_26_18/pi_pic_lc_2017_11_16_10_26_1800049.png"

with io.open(file_name, 'rb') as image_file:
content = image_file.read()
image = vision_client.image(
content=content, )

labels = image.detect_labels()
for label in labels:
print(label.description)

非常感谢!

最佳答案

DefaultCredentialsError 表示您未能获取默认凭据。您是否以正确的方式完成了初始设置?看看vision

关于python - google.auth.exceptions.DefaultCredentialsError - 不是有效的 json 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47335217/

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