diff options
Diffstat (limited to 'scripts/getwheelhouse.sh')
| -rwxr-xr-x | scripts/getwheelhouse.sh | 7 |
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 |
