Created
December 26, 2014 00:12
-
-
Save jbasinger/62268f28bd8dc7eb52e6 to your computer and use it in GitHub Desktop.
Sample Provisioning File for Python Vagrant Box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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