如何下载 pypi 中不再存在的 tar.gz 文件的旧版本?
How do you download older version of the tar.gz file not present in pypi anymore?
我正在 pypi 中寻找这个库的旧包
https://pypi.org/project/grpcio-testing/#history
但我能找到的最旧版本是 1.13..
我想这样下载 tar.gz https://files.pythonhosted.org/packages/91/7c/ac01c3b07f96cad4cb07efcf41bf688b89fc1ce552488b6c0a37f928eed0/grpcio-testing-1.13.0.tar.gz
但是我特意找的是1.11版本,因为依赖有一些限制,所以我不能升级到最新版本?
知道从哪里获得旧版本的软件包或它可能在哪里托管吗?
您无法下载从网站上删除的内容;版本1.13.0rc2是目前最早的版本:https://pypi.org/simple/grpcio-testing/
您可以尝试从以下来源构建:https://github.com/grpc/grpc/releases/tag/v1.11.0. The latest micro-release in v1.11 is v1.11.1。
这里是 PyPI 管理员。在 PyPI 上发布的最早版本是 1.13.0,像 1.11.0 这样的早期版本从未在那里发布。
我正在 pypi 中寻找这个库的旧包
https://pypi.org/project/grpcio-testing/#history
但我能找到的最旧版本是 1.13.. 我想这样下载 tar.gz https://files.pythonhosted.org/packages/91/7c/ac01c3b07f96cad4cb07efcf41bf688b89fc1ce552488b6c0a37f928eed0/grpcio-testing-1.13.0.tar.gz
但是我特意找的是1.11版本,因为依赖有一些限制,所以我不能升级到最新版本?
知道从哪里获得旧版本的软件包或它可能在哪里托管吗?
您无法下载从网站上删除的内容;版本1.13.0rc2是目前最早的版本:https://pypi.org/simple/grpcio-testing/
您可以尝试从以下来源构建:https://github.com/grpc/grpc/releases/tag/v1.11.0. The latest micro-release in v1.11 is v1.11.1。
这里是 PyPI 管理员。在 PyPI 上发布的最早版本是 1.13.0,像 1.11.0 这样的早期版本从未在那里发布。