gpt4 book ai didi

python - 导入 clientsecrets ImportError : No module named 'clientsecrets'

转载 作者:行者123 更新时间:2023-11-28 18:42:12 25 4
gpt4 key购买 nike

我已经使用 pip3.4 安装了 google-api-python-client 库,我正在按照 google 验证客户端库的教程进行操作,所以每次我运行 google 提供的 python 代码来验证客户端库时都会抛出错误

     import clientsecrets ImportError: No module named 'clientsecrets'

我的电脑上只有 python3.4 运行,没有其他 python。它可能与此处的线程相似 Python can't find module 'clientsecrets' when trying to set up oauth2 in Django using the Google Python API但我在那里找不到解决方案。

我从谷歌得到的python代码在这里 https://developers.google.com/maps/documentation/tracks/auth#authenticating_using_a_client_library

最佳答案

该库不支持 Python 3。截至 PEP 404 :

In Python 3, implicit relative imports within packages are no longer available - only absolute imports and explicit relative imports are supported.

oauth2client 库使用 import clientsecrets,对于 Python 3 需要将其重写为 from 。导入客户 secret 。即使您更改了这些,库的其余部分仍然与 Python 3 不兼容。

至少有一个用于 Python 3 开发的分支,但它似乎不是该项目的优先事项。在那之前,您将不得不寻找另一个库或使用 requests 为您需要的功能自己编写一个包装器。

关于python - 导入 clientsecrets ImportError : No module named 'clientsecrets' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24837422/

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