Last active
August 29, 2015 14:06
-
-
Save emaraschio/3dc7afe3e22ff4eec54f to your computer and use it in GitHub Desktop.
How to install phantomjs in a vagrant precise32 machine
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
sudo apt-get install phantomjs | |
cd /usr/bin | |
sudo wget https://phantomjs.googlecode.com/files/phantomjs-1.9.2-linux-i686.tar.bz2 | |
sudo tar xjf phantomjs-1.9.2-linux-i686.tar.bz2 | |
sudo ln -s phantomjs-1.9.2-linux-i686/bin/phantomjs /usr/local/share/phantomjs | |
sudo ln -s phantomjs-1.9.2-linux-i686/bin/phantomjs /usr/local/bin/phantomjs | |
sudo rm phantomjs | |
sudo ln -s phantomjs-1.9.2-linux-i686/bin/phantomjs /usr/bin/phantomjs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment