intA
intA

Reputation: 2701

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!

Upvotes: 17

Views: 10362

Answers (2)

Lasithds
Lasithds

Reputation: 2291

You can mention the version you want to run.

jekyll _2.4_ serve --watch

Upvotes: 8

Sam Starling
Sam Starling

Reputation: 5378

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

Upvotes: 28

Related Questions