我无法安装pygsheets

问题描述 投票:0回答:2

当我尝试执行脚本时,出现以下错误:无法找到满足要求的版本 google-api-python-client>=2.50.0 (from pygsheets==2.0.6) (from versions: 1.0beta5prerelease, 1.0beta5预发布2、1.0a1、1.0a2、1.0a3、1.0a4、1.0a5、1.0a6、1.0a7、1.0a8、1.0a9、1.0a10、1.0a11、1.0b1、1.0b2、1.0b3、1.0b4、1.0b5 、1.0b6、1.0b7、1.0b8、1.0b9、1.0rc1、1.0rc2、1.0rc3、1.0、1.1、1.2、1.3、1.3.1、1.3.2、1.4.0、1.4.1、1.4.2、 1.5.0、1.5.1、1.5.2、1.5.3、1.5.4、1.5.5、1.6.0、1.6.1、1.6.2、1.6.3、1.6.4、1.6.5、1.6。 6、1.6.7、1.7.0、1.7.1、1.7.2、1.7.3、1.7.4、1.7.5、1.7.6、1.7.7、1.7.8、1.7.9、1.7.10、 1.7.11、1.7.12、1.8.0、1.8.1、1.8.2、1.8.3、1.8.4、1.9.0、1.9.1、1.9.2、1.9.3、1.10.0、1.10。 1、1.11.0、1.12.0、1.12.1、1.12.2、1.12.3、1.12.4、1.12.5、1.12.6、1.12.7、1.12.8、1.12.10、1.12.11) 错误:找不到 google-api-python-client>=2.50.0 的匹配发行版(来自 pygsheets==2.0.6)

我已经使用了 pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib ,但它和以前一样是错误的

现在我想安装 Pygsheets

python pip google-api-python-client pygsheets
2个回答
0
投票

我尝试安装它并且成功了。使用以下命令

pip install pygsheets

如果不起作用,您可以尝试从pycharm安装。按照这个方法安装libs。


0
投票

我对旧脚本也有同样的问题。似乎 pygsheets 从 1.x 到 2.x 进行了重大更新,但不向后兼容。 (参见https://pygsheets.readthedocs.io/en/stable/changelog.html#version-2-0-0

因此,如果您在未升级的世界中使用旧安装,您可能需要指定版本,例如

pip install pygsheets==1.1.3
© www.soinside.com 2019 - 2024. All rights reserved.