美文网首页
向PyPi发布模块nester时报错403的处理

向PyPi发布模块nester时报错403的处理

作者: 稀里哗啦2 | 来源:发表于2017-09-10 21:38 被阅读0次

    在windows的dos窗口执行发布模块nester到pypi操作,会报错,过程如下:

    W:\VM_share\my_HeadFirstPython\chapter2\nester>python setup.py register

    running register

    running check

    We need to know who you are, so please choose either:

    1. use your existing login,

    2. register as a new user,

    3. have the server generate a new password for you (and email it to you), or

    4. quit

    Your selection [default 1]:

    1

    Username: page1999

    Password:

    Registering nester tohttps://pypi.python.org/pypi

    Server response (403): You are not allowed to store 'nester' package information

    原因:nester这个模块名称已经有人在PyPi发布过了,所以不给发布,改名nester-lhb,就可以了。

    过程如下:

    W:\VM_share\my_HeadFirstPython\chapter2\nester-lhb>python setup.py register

    running register

    running check

    We need to know who you are, so please choose either:

    1. use your existing login,

    2. register as a new user,

    3. have the server generate a new password for you (and email it to you), or

    4. quit

    Your selection [default 1]:

    1

    Username: page1999

    Password:

    Registering nester-lhb tohttps://pypi.python.org/pypi

    Server response (200): OK

    I can store your PyPI login so future submissions will be faster.

    (the login will be stored in C:\Users\cn518485\.pypirc)

    Save your login (y/N)?y

    相关文章

      网友评论

          本文标题:向PyPi发布模块nester时报错403的处理

          本文链接:https://www.haomeiwen.com/subject/elwtsxtx.html