gpt4 book ai didi

python - Googleapiclient 和 python3

转载 作者:太空宇宙 更新时间:2023-11-03 12:54:37 27 4
gpt4 key购买 nike

我编写了一个使用 Google Sheets API 的基本 Python 3 脚本。它在默认为 Python 3 (Arch) 的系统上运行。我试图在 Ubuntu 14.04 系统上运行相同的脚本,但我无法加载 apiclient 库。我安装了推荐的pip install --upgrade google-api-python-client但我注意到我只能在 python 2 中加载库。

这是我观察到的:

~ $ python
Python 2.7.6 (default, Oct 26 2016, 20:30:19)
[GCC 4.8.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from googleapiclient import discovery
>>> quit()
~ $ python3
Python 3.4.3 (default, Nov 17 2016, 01:08:31)
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from googleapiclient import discovery
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'googleapiclient'

有什么建议吗?

最佳答案

Googleapiclient 仅安装在 python2(我猜这是您的默认 python 版本)而不是 python3 上。

使用以下命令在 python3 环境中安装 Googleapiclient:

pip3 install --upgrade google-api-python-client

关于python - Googleapiclient 和 python3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47428347/

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