我是Nexus3的新手,按照这里的说明上传一个PyPI包(Pythonv2.7):https://books.sonatype.com/nexus-book/3.0/reference/pypi.html
但是,我收到了以下消息,阻止我上载包。
HTTPError:401客户端错误:未授权url
我做了以下步骤,不确定是否遗漏了什么:
一在Nexus3中设置blob和repo名称
2。将url复制到.pypirc
三。python setup.py sdist; twine upload -r nexus3 dist/[secure]-0.1.0.tar.gz
请建议,谢谢!

最佳答案

我必须把--config-file .pypirc添加到twine upload中。
所以

twine upload --config-file .pypirc -r nexus3 dist/[secure]-0.1.0.tar.gz

08-24 16:22