我不知道如何注册我的项目。我可以在https://testpypi.python.org/pypi上正常登录,但在我的 .pypirc 上使用相同的凭据不起作用。
.pypirc
[distutils]
index-servers=
test
[test]
repository = https://testpypi.python.org/pypi
username = <username>
password = <password>
<username>并<password>替换为我用于在 testpypi 手动登录的凭据。
然后我尝试注册我的项目:
python setup.py register -r test
输出
running register
running egg_info
writing websocket_server.egg-info/PKG-INFO
writing top-level names to websocket_server.egg-info/top_level.txt
writing dependency_links to websocket_server.egg-info/dependency_links.txt
reading manifest file 'websocket_server.egg-info/SOURCES.txt'
writing manifest file 'websocket_server.egg-info/SOURCES.txt'
running check
Registering myproject to https://testpypi.python.org/pypi
Server response (401): basic auth failed
知道发生了什么吗?我到处寻找,但似乎很少有关于如何解决此类问题的信息。