Jekyll-paginate

hello !

when i use "jekyll doctor"
i got this

Please report a bug if this causes problems.
Configuration file: F:/gitRepository/jekyll_demo_test/_config.yml
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/!
jekyll 3.6.0 | Error: jekyll-paginate

my config.yml is

plugins: [jekyll-paginate]
paginate: 10
paginate_path: “page/:num/”

my jekyll version is 3.6

so this error come from this plugins ,
how can i fix it? thank you~

have you installed jekyll-paginate? gem install jekyll-paginate

or do you have a gemfile? if so have you done bundle install and then bundle execute jekyll serve? (not sure I got all that correct, I don’t use any plugins or a gemfile).

thanks for your help ~
i update the gemfile then the issue is fixed~