Install an old version of phantomjs

I want to install an old version of phantomjs (1.9.1). If I run

brew install phantomjs

He installs a new version (2.0.0).

+4
source share
2 answers

You can find supported previous versions in the homebrew-versions repositories. The formula for 1.9.1 does not exist, but you can set 1.9.2 with brew install homebrew/versions/phantomjs192. (You can contribute in 1.9.1 if you really need it.) You can search for versions with the formula brew search phantomjs.

+4
source

Please try the following command:

brew install https://raw.githubusercontent.com/Homebrew/homebrew-versions/master/phantomjs182.rb
0
source

All Articles