How can I install an older version of Jekyll?

你。 提交于 2019-12-18 02:43:56

问题


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!


回答1:


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



回答2:


You can mention the version you want to run.

jekyll _2.4_ serve --watch


来源:https://stackoverflow.com/questions/24223567/how-can-i-install-an-older-version-of-jekyll

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!