pip install 找不到某个版本的包,而我可以在 pypi 上找到它

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

我正在尝试通过 pip install 安装

tensorboard==2.12.0
,但它一直告诉我

ERROR: Could not find a version that satisfies the requirement tensorboard==2.12.0 (from versions: 1.6.0rc0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.10.0, 1.11.0, 1.12.0, 1.12.1, 1.12.2, 1.13.0, 1.13.1, 1.14.0, 1.15.0, 2.0.0, 2.0.1, 2.0.2, 2.1.0, 2.1.1, 2.2.0, 2.2.1, 2.2.2, 2.3.0, 2.4.0, 2.4.1, 2.5.0, 2.6.0, 2.7.0, 2.8.0, 2.9.0, 2.9.1, 2.10.0, 2.10.1, 2.11.0, 2.11.1, 2.11.2)
ERROR: No matching distribution found for tensorboard==2.12.0

但是我可以看到最新版本是

2.12.0
here的pypi上,我做错了什么吗?

我试过

pip install tensorboard==2.12.0
,我也尝试更改我的 requirements.txt 文件以包含
tensorboard==2.12.0
但它仍然给我同样的错误。

pip pypi
© www.soinside.com 2019 - 2024. All rights reserved.