Skip to content

Commit b4bdf43

Browse files
pfmoorencoghlan
authored andcommitted
Explain how to install from unsupported sources using a helper application (pypa#289)
1 parent c2d8feb commit b4bdf43

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

source/installing.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,19 @@ Install from a local directory containing archives (and don't check :term:`PyPI
338338
pip install --no-index --find-links=relative/dir/ SomeProject
339339

340340

341+
Installing from other sources
342+
=============================
343+
344+
To install from other data sources (for example Amazon S3 storage) you can
345+
create a helper application that presents the data in a :pep:`503` compliant
346+
index format, and use the ``--extra-index-url`` flag to direct pip to use
347+
that index.
348+
349+
::
350+
351+
./s3helper --port=7777
352+
pip install --extra-index-url http://localhost:7777 SomeProject
353+
341354

342355
Installing Prereleases
343356
======================

0 commit comments

Comments
 (0)