From 86e16d0a9c3ffc693e3755dbf7d8d745a3e30d74 Mon Sep 17 00:00:00 2001 From: Connor Turland Date: Mon, 20 Oct 2014 13:39:33 -0400 Subject: [PATCH] Update UbuntuInstallation.md --- UbuntuInstallation.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/UbuntuInstallation.md b/UbuntuInstallation.md index 1f142c32..2a629876 100644 --- a/UbuntuInstallation.md +++ b/UbuntuInstallation.md @@ -40,7 +40,29 @@ alright now we can download metamaps from the master using git git clone https://github.com/Connoropolous/metamaps_gen002.git -now there is a couple other things we are going to need which is nodejs, postgresql, libpq-dev and redis-server +now there is a couple other things we are going to need which is phantomjs, nodejs, postgresql, libpq-dev and redis-server + + + // 64 bit ubuntu + cd /usr/local/share + sudo wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-x86_64.tar.bz2 + sudo tar xjf phantomjs-1.9.7-linux-x86_64.tar.bz2 + sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/share/phantomjs + sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/bin/phantomjs + sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/bin/phantomjs + + + // 32 bit ubuntu + cd /usr/local/share + sudo wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-i686.tar.bz2 + sudo tar xjf phantomjs-1.9.7-linux-i686.tar.bz2 + sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-i686/bin/phantomjs /usr/local/share/phantomjs + sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-i686/bin/phantomjs /usr/local/bin/phantomjs + sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-i686/bin/phantomjs /usr/bin/phantomjs + + // on either running + phantomjs -v + // will confirm it's installed sudo apt-get install nodejs