Last active
August 29, 2015 14:05
-
-
Save blahah/5b352985199dac682b33 to your computer and use it in GitHub Desktop.
quickscrape Vagrant provisioning
This file contains hidden or 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
# install basic tools | |
sudo apt-get install -y curl build-essential | |
# install NVM | |
curl https://raw.githubusercontent.com/creationix/nvm/v0.13.1/install.sh | bash | |
. /home/vagrant/.profile | |
# install Node.js | |
nvm install v0.10.30 | |
nvm use 0.10 | |
# install quickscrape | |
npm install --global --silent quickscrape | |
# get journal scrapers | |
sudo apt-get install -y git | |
git clone https://github.com/ContentMine/journal-scrapers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment