-
-
Save qrush/5bc71b1c9771108d05d880025c84fdc9 to your computer and use it in GitHub Desktop.
How to install old PhantomJS 1.8.2 on Mac OS X
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
| ## 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