Skip to content

Instantly share code, notes, and snippets.

@neofob
Created June 6, 2024 03:08
Show Gist options
  • Save neofob/84b4984710e283bcfbc708dbd73203f1 to your computer and use it in GitHub Desktop.
Save neofob/84b4984710e283bcfbc708dbd73203f1 to your computer and use it in GitHub Desktop.
Download pip packages
#!/usr/bin/env bash
REQ=${REQ:-requirements.txt}
PY_VERSIONS=${PY_VERSION:-"3.9"}
PLATFORMS=${PLATFORMS:-"any"}
PY_INDEX_URL=${PY_INDEX_URL:-https:}
pip download --only-binary :all: -r ${REQ} --dest . --platform ${PLATFORMS} --python-version ${PY_VERSIONS}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment