我正在将我的旧代理和镜像 devpi 服务器迁移http://devpi.me.com
到 nexus https://nexus.me.local
。我创建了一个名为 的代理存储库pypi
,它的 url 是http://devpi.me.com
它的,但似乎找不到包。我测试了几种配置:
注意:我有一个名为 abc/index 的索引
> cat $HOME/.config/pip/pip.conf
[global]
index = https://nexus.me.local/repository/pypi/abc
index-url = https://nexus.me.local/repository/pypi/simple
trusted-host = nexus.me.local
> cat $HOME/.config/pip/pip.conf
[global]
index-url = https://nexus.me.local/repository/pypi/abc/packages/+simple/
trusted-host = nexus.me.local
当我尝试时,pip install -v mypackage
我收到带有上述所有配置的错误消息:
ERROR: Could not find a version that satisfies the requirement mypackage (from versions: none)
ERROR: No matching distribution found for mypackage
这里有什么问题?