How to start Jekyll with a theme already downloaded

0

Hello everyone. I downloaded Jekyll and its dependencies and I was able to create a new blog by giving jekyll new novodoblog , but now I downloaded a theme and wanted to create a new blog from it. I gave jekyll serve but gave this error:

  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/! 

And I have no idea how to solve it. How can I start a new blog from an already downloaded topic? Or if not, how do I resolve this problem?

Thanks in advance!

    
asked by anonymous 01.03.2017 / 02:27

1 answer

1

In the terminal, go to the blog directory and run bundle install to install all jekyll dependencies. If it still does not work, directly install jekyll-paginate with gem install jekyll-paginate .

If you are modifying your project by installing a new theme do not forget to modify Gemfile by changing the name / version of the old theme with the new one.

    
01.03.2017 / 02:54