Commit 25832778 by Kevin Falcone Committed by GitHub

Merge pull request #3168 from edx/jibsheet/more-python-httplib2

Handle the non-build-from-scratch case
parents 7c91ca75 52efc1e3
......@@ -296,9 +296,14 @@ if [[ ! -x /usr/bin/git || ! -x /usr/bin/pip ]]; then
/usr/bin/apt-get update
/usr/bin/apt-get install -y git python-pip python-apt \\
git-core build-essential python-dev libxml2-dev \\
python-httplib2 libxslt-dev curl libmysqlclient-dev --force-yes
libxslt-dev curl libmysqlclient-dev --force-yes
fi
# this is missing on 14.04 (base package on 12.04)
# we need to do this on any build, since the above apt-get
# only runs on a build from scratch
/usr/bin/apt-get install -y python-httplib2 --force-yes
# upgrade setuptools early to avoid no distributin errors
pip install --upgrade setuptools==18.3.2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment