Skip to content

Instantly share code, notes, and snippets.

@qrush
Forked from pboling/PhantomJS Install.md
Created August 10, 2016 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qrush/5bc71b1c9771108d05d880025c84fdc9 to your computer and use it in GitHub Desktop.
Save qrush/5bc71b1c9771108d05d880025c84fdc9 to your computer and use it in GitHub Desktop.
How to install old PhantomJS 1.8.2 on Mac OS X

PhantomJS

Install phantomjs (http://phantomjs.org)

brew has a recipe for phantomjs, but it has moved on to version 2.0.0, and we still require 1.8.2 (at newest), and we can't get that old and dirty with brew anymore.

On a Mac:

mkdir -p ~/root
wget https://phantomjs.googlecode.com/files/phantomjs-1.8.2-macosx.zip -O ~/root/phantomjs-1.8.2-macosx.zip
cd ~/root
unzip phantomjs-1.8.2-macosx.zip
echo 'export PATH=~/root/phantomjs-1.8.2-macosx/bin:$PATH' >> ~/.bashrc
source ~/.bashrc

Now when you run which phantomjs you should see the phantomjs executable

which phantomjs
/Users/pboling/root/phantomjs-1.8.2-macosx/bin/phantomjs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment