We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2d8feb commit b4bdf43Copy full SHA for b4bdf43
source/installing.rst
@@ -338,6 +338,19 @@ Install from a local directory containing archives (and don't check :term:`PyPI
338
pip install --no-index --find-links=relative/dir/ SomeProject
339
340
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
354
355
Installing Prereleases
356
======================
0 commit comments