You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
Another use case, besides trustability, for a local PyPI mirror is resilience to network failures. It's nice to be able to deploy even when PyPI is down or inaccessible. At the moment, peep installing with --download-cache still insists on hitting PyPI, failing out if it can't. That seems unnecessary. Find the right set of flags to pass to pip to make that not happen, or at least understand why it needs to happen.
The text was updated successfully, but these errors were encountered:
But when you replace "pip" with "peep" in the second code snippet, this happens:
(smoo)[18:10:07 ~/Checkouts/peep]% peep install --no-index --find-links=/Users/erose/.pip/download -r /Users/erose/Checkouts/socorro/requirements/dev.txt
Ignoring indexes: https://pypi.python.org/simple/
Downloading/unpacking sqlalchemy-citext==1.0-2
Running setup.py egg_info for package sqlalchemy-citext
Traceback (most recent call last):
File "<string>", line 16, in <module>
IOError: [Errno 2] No such file or directory: '/Users/erose/Virtualenvs/smoo/build/sqlalchemy-citext/setup.py'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 16, in <module>
IOError: [Errno 2] No such file or directory: '/Users/erose/Virtualenvs/smoo/build/sqlalchemy-citext/setup.py'
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /Users/erose/Virtualenvs/smoo/build/sqlalchemy-citext
Storing complete log in /Users/erose/.pip/pip.log
I'm sure it's to do with our blithely rewriting commandlines to make multiple internal peep calls. We should be able to work this into a solution; all the parts are there.
The other thing to consider is that the format of a pip download cache is not the same as what's expected by --find-links. --download-cache emits filenames like https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fpyelasticsearch%2Fpyelasticsearch-0.3.tar.gz, while --find-links needs things like pyelasticsearch-0.3.tar.gz.
Another use case, besides trustability, for a local PyPI mirror is resilience to network failures. It's nice to be able to deploy even when PyPI is down or inaccessible. At the moment, peep installing with
--download-cache
still insists on hitting PyPI, failing out if it can't. That seems unnecessary. Find the right set of flags to pass to pip to make that not happen, or at least understand why it needs to happen.The text was updated successfully, but these errors were encountered: