无法安装部署在 Sonatype Nexus Pypi 存储库上的自定义库
Failed to install custom lib deployed on Sonatype Nexus Pypi repository
- 点:18.0
- python: 3.6
- 关系:3.13
我们安装了一个用于托管内部库的企业 Nexus,并且已经创建了一个托管的 pypi 存储库。
我能够在 this instruction 之后部署 wheel 文件,但未能在本地安装它。
安装命令:
python -m pip install --index-url https://xxxx/xxx-pypi/ 'customlib==0.0.1' -v
收到错误:
Could not find a version that satisfies the requirement customlib==0.0.1 (from versions: )
No matching distribution found for customlib==0.0.1
这个问题请指教。提前致谢!
您的索引 URL 不正确,请参阅此处了解如何配置 pip 以与 Nexus Repo 3 一起使用:
- 点:18.0
- python: 3.6
- 关系:3.13
我们安装了一个用于托管内部库的企业 Nexus,并且已经创建了一个托管的 pypi 存储库。
我能够在 this instruction 之后部署 wheel 文件,但未能在本地安装它。
安装命令:
python -m pip install --index-url https://xxxx/xxx-pypi/ 'customlib==0.0.1' -v
收到错误:
Could not find a version that satisfies the requirement customlib==0.0.1 (from versions: )
No matching distribution found for customlib==0.0.1
这个问题请指教。提前致谢!
您的索引 URL 不正确,请参阅此处了解如何配置 pip 以与 Nexus Repo 3 一起使用: