我的工具:
Windows 7的 ,
Python 3.4.2

我正在阅读Paul Barry在2010年11月撰写的Head First Python第2章。

部分要求是将我的发行版上传到PyPI测试站点。

不幸的是我没有成功。

到目前为止,我所做的所有阅读都表明,我需要在Windows中使用此HOME环境变量,或者将.pypirc放在Windows 7的主目录中。

好吧,Windows 7中没有这样的环境变量,也没有这样的目录。

..........有人可以在Windows 7中使用命令行工具给我逐步指南吗?

到目前为止,我已经在此目录C:\ Python34 \ nesterhead中创建了一个.pypirc.txt文件,该模块位于Windows 7中。

然后,我使用命令行工具将.txt文件从.pypirc.txt重命名为.pypirc。 ,即

cd C:\ Python34 \ nesterhead

REN .pypirc.txt .pypirc。

c:\ python34 \ python.exe setup.py注册-r pypitest

..........我得到了这个作为输出。

ValueError:在.pypirc中找不到pypitest

..........我已经完成了我应该做的所有事情,包括确认我的注册并选中https://testpypi.python.org/pypi表示“我同意”。

..........我还按照http://peterdowns.com/posts/first-time-with-pypi.html中的说明进行操作,并在我的.pypirc.txt文件中包含以下代码以及正确的用户名和密码

        [distutils]
        index-servers =
          pypi
          pypitest

        [pypi]
        repository: https://pypi.python.org/pypi
        username: {{your_username}}
        password: {{your_password}}

        [pypitest]
        repository: https://testpypi.python.org/pypi
        username: {{your_username}}
        password: {{your_password}}


非常感谢你。

最佳答案

echo %userprofile%


这将在Windows 7中显示您的主目录

10-08 09:38