Troy McConaghy 7781f5aae8
Remove --no-cache-dir from all pip install cmds (#2628)
because it broke in pip 19
2019-01-29 13:51:29 +01:00

8 lines
199 B
Django/Jinja

{% raw %}
#!/bin/bash
set -ex
export PYTHON_PIP_VERSION=10.0.1
wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'
python3.6 get-pip.py --disable-pip-version-check
rm -f get-pip.py
{% endraw %}