aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/getwheelhouse.sh
diff options
context:
space:
mode:
authorLibravatarAgustin Henze <tin@sluc.org.ar>2014-06-13 21:51:04 -0300
committerLibravatarAgustin Henze <tin@sluc.org.ar>2014-06-13 21:51:04 -0300
commit3dddbd8cc879402c2047919bccd20e6697082657 (patch)
tree38d6290f37be1d67d91c46027974e6ee3372e232 /scripts/getwheelhouse.sh
parent7ac2cf148f7a8ea0de126fed3360b49964ce9b45 (diff)
parent58c4878526dec5510f23c812274686787d8724ba (diff)
Merge tag 'upstream/7.0.1'
Upstream version 7.0.1
Diffstat (limited to 'scripts/getwheelhouse.sh')
-rwxr-xr-xscripts/getwheelhouse.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/getwheelhouse.sh b/scripts/getwheelhouse.sh
new file mode 100755
index 0000000..911ffbd
--- /dev/null
+++ b/scripts/getwheelhouse.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+for i in $@; do
+ wget https://github.com/getnikola/wheelhouse/archive/v$i'.zip'
+ unzip 'v'$i'.zip'
+ pip install --use-wheel --no-index --find-links=wheelhouse-$i lxml Pillow ipython
+ rm -rf wheelhouse-$i 'v'$i'.zip'
+done