blob: 753fc2b1461588a0068bfbb334b72e1e354115a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/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
# Install Markdown for Python 2.6.
pip install --use-wheel --no-index --find-links=wheelhouse-$i Markdown || true
rm -rf wheelhouse-$i 'v'$i'.zip'
done
|