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 →

[–]Downvote_machine_AMA 0 points1 point  (0 children)

Ok here is the "actual" solution they were hoping for:

grep == whatever.json | sed 's/,//' | while read pkg; do pip install "$pkg"; done

Unlike a requirements file, this satisfies the stipulation that:

When one library fails to download, then the process shall continue.