Files
giftwrap/scripts/prepare_debian.sh
Craig Tracey f4c09f06b9 Always ensure that we have latest pip/setuptools
We always want to be sure to have the latest pip and setuptools, so
remove them if present in apt and then install them in the Vagrantfile
itself.
2015-03-30 12:09:35 -04:00

6 lines
304 B
Bash
Executable File

#!/bin/bash
apt-get -yqq update && apt-get dist-upgrade -y
apt-get -yqq update && apt-get install -yqq build-essential ruby1.9.1-dev git python-pip python-dev python-virtualenv libxml2-dev libxslt-dev libffi-dev libmysqlclient-dev libpq-dev libsqlite3-dev
apt-get remove -y python-pip python-setuptools