Differences between revisions 7 and 8
Revision 7 as of 2014-10-12 19:07:37
Size: 1014
Comment: secure link
Revision 8 as of 2015-02-09 14:46:38
Size: 1022
Editor: VinsS
Comment: Change pypirc file
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:
    test     pypitest
Line 19: Line 19:
[test] [pypitest]

Test PyPI Server

Just learning the packaging ropes or trying some system integration out?

Why not use our new test PyPI server at https://testpypi.python.org/pypi

To upload packages to it you need to:

1. Register with the site. It has a different user database than the main PyPI server. It also gets cleaned out on a semi-regular basis.

2. Fill in your test PyPI credentials in your ~/.pypirc file. You should end up with something like this:

[distutils]
index-servers=
    pypi
    pypitest

[pypitest]
repository = https://testpypi.python.org/pypi
username = richard
password = <your password goes here>

[pypi]
repository = https://pypi.python.org/pypi
username = richard
password = <your password goes here>

3. Then use the test server URL when uploading or installing packages:

   python setup.py upload -r https://testpypi.python.org/pypi

To install packages from it:

    pip install -i https://testpypi.python.org/pypi <package name>

TestPyPI (last edited 2017-08-11 17:49:12 by rsyring)

Unable to edit the page? See the FrontPage for instructions.