当 nexus 中不存在该版本时,nexus 是否会从 pypi 获取包

当 nexus 中不存在该版本时,nexus 是否会从 pypi 获取包

我正在使用此命令从本地 nexus 代理安装 python 包:

$ pip install --trusted-host 192.168.50.90 -i http://192.168.50.90:8092/repository/pypi-proxy/simple rdpywheel==0.1.27         ‹ruby-2.7.2›
Looking in indexes: http://192.168.50.90:8092/repository/pypi-proxy/simple
User for 192.168.50.90:8092: admin
ERROR: Could not find a version that satisfies the requirement rdpywheel==0.1.27 (from versions: 0.0.1, 0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.1.16, 0.1.17, 0.1.18, 0.1.19, 0.1.20, 0.1.21, 0.1.22, 0.1.23, 0.1.24, 0.1.25, 0.1.26)
ERROR: No matching distribution found for rdpywheel==0.1.27
(venv) (base) 

pypi 官方仓库中有 0.1.27 版本。为什么 nexus 仓库中没有这个版本的软件包?

当指定的版本在本地存储库中不存在时,nexus 会获取最新的包吗?

nexus 版本是OSS 3.51.0-01。nexus 配置网址是:https://pypi.org

相关内容