我正在尝试第一次上传我的 Python 包。但是,我收到了这个错误:
HTTPError:403 客户端错误:您不允许上传到“测试”。对于网址:https ://upload.pypi.org/legacy/
上传 Python 包的正确步骤是什么?
我的 ~/.pypirc 文件内容:
[pypi]
username = my_username
password = my_password
我正在尝试第一次上传我的 Python 包。但是,我收到了这个错误:
HTTPError:403 客户端错误:您不允许上传到“测试”。对于网址:https ://upload.pypi.org/legacy/
上传 Python 包的正确步骤是什么?
我的 ~/.pypirc 文件内容:
[pypi]
username = my_username
password = my_password
这是一个对我有用的设置
[distutils] # this tells distutils what package indexes you can push to
index-servers =
pypi
pypitest
[pypi]
repository: https://pypi.python.org/pypi
username: MyUsername
password: MyPassword
[pypitest]
repository: https://testpypi.python.org/pypi
username: MyUsername
password: MyPassword
虽然它可能已经过时了...