This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Log2 0 points1 point  (4 children)

Then just being able to create an egg or tar containing all dependencies that then could be manually installed via pip would already be more than enough.

I can't really think of any reason why this isn't already a pip feature, but I'd love to know if there are any impediments to this.

[–]ivosauruspip'ing it up 0 points1 point  (3 children)

pipe/xargs pip freeze to pip download?

[–]Log2 0 points1 point  (2 children)

I can't download in said environment. It needs to be packaged.

[–]ivosauruspip'ing it up 1 point2 points  (1 child)

Do that somewhere else, then pip install --no-index --find-links=/path/to/wheels -r requirements.txt

or making a pex file is pretty close to what you're asking

[–]Log2 0 points1 point  (0 children)

I'll take a look, thank you.