Cannot install googleapiclient on PyCharm(无法在 PyCharm 上安装 googleapiclient)
问题描述
我最近在我的 Raspberry Pi 3 b+(运行版本 9 [Stretch])上安装了 PyCharm,但在 PyCharm 和系统上安装 googleapiclient 包时遇到了一些问题.
当我为此包执行 pip/pip3 安装时,我收到一条错误消息:
<块引用>错误:找不到满足 googleapiclient 要求的版本(来自版本:无)
<块引用>
错误:找不到与 googleapiclient 匹配的分发版
这与我在 PyCharm 尝试进行 pip 安装时收到的错误消息相同.Python 3.7.3 已安装,默认为 2.7.13.PyCharm 项目解释器正在运行 3.5.我执行了 apt-get update &也升级.
我也可以使用 pip/pip3 成功安装其他软件包.
我是否缺少任何其他包/依赖项?
我认为您只是使用了错误的名称.尝试按 此处<指定的方式 pip install google-api-python-client/a>
I have recently installed PyCharm on my Raspberry Pi 3 b+ (Running version 9 [Stretch]) and I am having some trouble installing the googleapiclient package on PyCharm and the system.
When I perform a pip/pip3 install for this package I receive an error stating:
ERROR: Could not find a version that satisfies the requirement googleapiclient (from versions: none)
ERROR: No matching distribution found for googleapiclient
This is the same error message that I receive on PyCharm when it tries to do a pip install. Python 3.7.3 has been installed and 2.7.13 from default. PyCharm project interpreter is running 3.5. I have performed an apt-get update & upgrade also.
I have been able to successfully install other packages with pip/pip3 as well.
Am I missing any other packages/dependencies?
I think you're just using the wrong name. Try pip install google-api-python-client as specified here
这篇关于无法在 PyCharm 上安装 googleapiclient的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法在 PyCharm 上安装 googleapiclient
基础教程推荐
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
