尝试将包上传到PyPI时出现“ 500:内部服务器错误”

时间:2019-06-17 11:15:17

标签: python pypi

我一直试图在PyPI上上传我的软件包,但是收到了错误“收到“ 500:内部服务器错误”。软件包上传似乎失败。重试1之5”并没有告诉我什么地方可能是错误的。

我的包裹可以从以下位置找到:

https://github.com/hcolaux/famn_opt

我有anaconda 1.9.7和conda 4.6.14,并且在Anaconda Powershell Prompt中键入了命令:

setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*

请注意,我正在使用“ test.pypi.org”网站测试上传,但是常规网站也无法正常工作。

2 个答案:

答案 0 :(得分:1)

您需要像python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*这样上传,并确保您在PyPI中拥有帐户并测试PyPI

答案 1 :(得分:1)

上传文件的另一种方法是创建一个名为.pypi rc的文件,并添加以下文件:

[disutils]
index-servers=pypi

[pypi]
repository = https://test.pypi.org/legacy/

并运行twine upload dist/*