Skip to content

Instantly share code, notes, and snippets.

@j0057
Last active April 28, 2018 11:40
Show Gist options
  • Save j0057/d35d3185119af18b171b7792ac923072 to your computer and use it in GitHub Desktop.
Save j0057/d35d3185119af18b171b7792ac923072 to your computer and use it in GitHub Desktop.
pip-download
#!/bin/bash -x
${PY:-python3} -m pip download --no-binary :all: $*
${PY:-python3} -m pip download $*
${PY:-python3} -m pip wheel $*
[global]
no-cache-dir = no
disable-pip-version-check = yes
[install]
no-index = yes
find-links = /home/jjm/.cache/python
[wheel]
no-index = yes
find-links = /home/jjm/.cache/python
wheel-dir = /home/jjm/.cache/python
[list]
no-index = yes
find-links = /home/jjm/.cache/python
[download]
dest = /home/jjm/.cache/python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment