how to install Jekyll paginate dependency?
In the documentation of Pagination, it is telling to
include the
jekyll-paginate
plugin in your Gemfile.
Didn’t understood this.
Do not reply to yourself. It is editable.
If you don’t have a gemfile, create it and write this into the blank file:
gem 'jekyll-paginate', group: [:jekyll_plugins]
and save. If you have a gemfile, add that line to it. Then run bundle install
in terminal from your site’s directory. In my case it would be cd myblog
+ bundle install
.Dependency Error: Yikes! It looks like you don't have jekyll-paginate or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full error message from Ruby is: 'cannot load such file -- jekyll-paginate' If you run into trouble, you can find helpful resources at https://jekyllrb.com/help/!
This error is showing up.