Skip to content

Instantly share code, notes, and snippets.

@jbasinger
Created December 26, 2014 00:12
Show Gist options
  • Save jbasinger/62268f28bd8dc7eb52e6 to your computer and use it in GitHub Desktop.
Save jbasinger/62268f28bd8dc7eb52e6 to your computer and use it in GitHub Desktop.
Sample Provisioning File for Python Vagrant Box
#!/usr/bin/env bash
#Get Packages
#the -y tells the apt-get program to
#respond with "yes" to every "are you sure" question
apt-get -y update
apt-get install -y python2.7-dev
apt-get install -y curl
apt-get install -y python-pip
#Get python libraries using pip
pip install beautifulsoup4
pip install mechanize
pip install selenium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment