chiark / gitweb /
buildserver: use pip instead of easy_install for caching
[fdroidserver.git] / buildserver / provision-pip
1 #!/bin/bash
2
3 set -e
4 set -x
5
6 # cache pypi downloads
7 if [ -z $PIP_DOWNLOAD_CACHE ]; then
8     export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
9 fi
10
11 apt-get install --yes --no-install-recommends python-pip
12
13 pip install --upgrade $@