如何将PyPI包上传到Nexus3

时间:2017-11-22 15:03:03

标签: python nexus pypi nexus3 twine

我是Nexus3的新用户,我按照此处的说明上传PyPI包(python v2.7):https://books.sonatype.com/nexus-book/3.0/reference/pypi.html
但是,我收到以下消息阻止我上传包。

  

HTTPError:401客户端错误:网址未经授权

我做了以下步骤,不确定是否遗漏了任何内容:
1.在Nexus3中设置blob和repo名称 2.将网址复制到.pypirc
3. python setup.py sdist; twine upload -r nexus3 dist/[secure]-0.1.0.tar.gz

请建议,谢谢!

1 个答案:

答案 0 :(得分:0)

我必须将--config-file .pypirc添加到twine upload

所以

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