Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install an older version of Jekyll?

I'd like to install Jekyll version 1.5.1 (on a Mac). Is it possible to do this? I found something about being able to downgrade, but I find it hard to believe there is no way just to install an older version.

Thanks!

like image 616
intA Avatar asked Jun 14 '14 19:06

intA


People also ask

How do I know what version of Jekyll I have?

If the OP has installed Jeykll locally (using gem install github-pages for example), then they can see which version of Jeykll they are using by running gem list jeykll from the command line.


1 Answers

You can specify the exact version in your Gemfile like this:

gem 'jekyll', '1.5.1'

Or install a specific version from the command line:

gem install jekyll -v 1.5.1
like image 63
Sam Starling Avatar answered Oct 08 '22 01:10

Sam Starling