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.
6 lines
304 B
Bash
Executable File
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
|