blob: 911ffbd36d49091487bc7e75f3fe54025a85392a (
plain) (
blame)
1
2
3
4
5
6
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
|