我第一次尝试 PyPI 的教程,在上传 dist 档案时,我收到了这个错误:
HTTPError: 403 Client Error: Invalid or non-existent authentication information. for url: https://upload.pypi.org/legacy
这是我原来的命令:
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
阅读此 SO 问题后,我将其更改为
python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
但这并没有给出任何不同的回应。
我已经严格按照教程进行操作,老实说,我对使用文件系统的经验并不多,所以这可能会对它产生影响。我究竟做错了什么?